feat: add project files

This commit is contained in:
mstfyldz
2026-06-03 17:31:50 +03:00
parent 8050d67b18
commit a952f571b9
26 changed files with 1661 additions and 113 deletions
+26
View File
@@ -0,0 +1,26 @@
import Header from "@/components/Header";
import Hero from "@/components/Hero";
import About from "@/components/About";
import Services from "@/components/Services";
import Gallery from "@/components/Gallery";
import InstagramFeed from "@/components/InstagramFeed";
import Contact from "@/components/Contact";
import Footer from "@/components/Footer";
import { getDictionary } from "../dictionaries";
export default async function Home({ params: { lang } }: { params: { lang: string } }) {
const dict = await getDictionary(lang);
return (
<main className="min-h-screen bg-brand-white">
<Header dict={dict} lang={lang} />
<Hero dict={dict} />
<About dict={dict} />
<Services dict={dict} />
<Gallery dict={dict} />
<InstagramFeed dict={dict} />
<Contact dict={dict} />
<Footer dict={dict} />
</main>
);
}