add readme for documentation
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import Hero from "@/components/software/Hero";
|
||||
import Hero from "@/components/software/hero/Hero";
|
||||
import Services from "@/components/software/Services";
|
||||
import TechStack from "@/components/software/TechStack";
|
||||
import Process from "@/components/software/Process";
|
||||
@@ -9,7 +9,7 @@ import { Portfolio } from "@/utilities/types/portfolio.type";
|
||||
export default async function SoftwarePage({ params }: { params: Promise<{ locale: string }> }) {
|
||||
const { locale } = await params;
|
||||
|
||||
const latestPortfolios: Portfolio[] = await fetch(`${BACKEND_URL_LOCAL}/portfolios/category/network/${locale}`)
|
||||
const latestPortfolios: Portfolio[] = await fetch(`${BACKEND_URL_LOCAL}/portfolios/category/software/${locale}`)
|
||||
.then((res) => res.json())
|
||||
.then((res) => res.data);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user