add readme for documentation

This commit is contained in:
Pouya Defaei
2026-05-02 08:52:08 +03:30
parent fc97bc5f59
commit 3edf6ff351
27 changed files with 927 additions and 664 deletions

View File

@@ -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);