Initial commit

This commit is contained in:
2026-08-01 16:07:57 +02:00
commit 20b254e614
68 changed files with 8467 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
import { getDictionary, type Locale } from "@/lib/dictionaries";
import Hero from "@/components/sections/Hero";
import Services from "@/components/sections/Services";
import TechStack from "@/components/sections/TechStack";
import ProjectsCarousel from "@/components/sections/ProjectsCarousel";
import CTA from "@/components/sections/CTA";
export default async function HomePage({
params,
}: {
params: Promise<{ locale: string }>;
}) {
const { locale } = await params;
const dict = getDictionary(locale);
return (
<>
<Hero locale={locale as Locale} dict={dict} />
<Services locale={locale as Locale} dict={dict} />
<TechStack locale={locale as Locale} dict={dict} />
<ProjectsCarousel locale={locale as Locale} dict={dict} featured />
<CTA locale={locale as Locale} dict={dict} />
</>
);
}