setup intl for multi language website and make hero and services and projects components in home dynamic and optimized
This commit is contained in:
20
src/app/[locale]/software/page.tsx
Normal file
20
src/app/[locale]/software/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user