setup intl for multi language website and make hero and services and projects components in home dynamic and optimized

This commit is contained in:
Pouya Defaei
2026-04-25 13:27:13 +03:30
parent d1d9c309f8
commit 8c051c3533
28 changed files with 1257 additions and 218 deletions

View File

@@ -0,0 +1,20 @@
// app/software/page.tsx
import Hero from "@/components/software/Hero";
import Services from "@/components/software/Services";
import TechStack from "@/components/software/TechStack";
import Process from "@/components/software/Process";
import Projects from "@/components/software/Projects";
import ContactFooter from "@/components/software/ContactFooter";
export default function SoftwarePage() {
return (
<main className="bg-[linear-gradient(rgba(255,255,255,0.02)_1px,transparent_1px),linear-gradient(90deg,rgba(255,255,255,0.02)_1px,transparent_1px)] bg-[size:40px_40px]">
<Hero />
<Services />
<TechStack />
<Process />
<Projects />
<ContactFooter />
</main>
);
}