37 lines
846 B
TypeScript
37 lines
846 B
TypeScript
"use client";
|
|
|
|
import { Navbar } from "@/components/Navbar";
|
|
import { ShowCase } from "@/components/ShowCase";
|
|
import { About } from "@/components/About";
|
|
import { ProductsGrid } from "@/components/ProductsGrid";
|
|
import { FAQ } from "@/components/FAQ";
|
|
import { ContactForm } from "@/components/ContactForm";
|
|
import { Footer } from "@/components/Footer";
|
|
|
|
const HERO_IMAGES = [
|
|
"/product/product.jpg",
|
|
"/product/product.jpg",
|
|
"/product/product.jpg",
|
|
"/product/product.jpg",
|
|
"/product/product.jpg",
|
|
];
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main>
|
|
<Navbar />
|
|
<ShowCase
|
|
titleKey="hero.title"
|
|
subtitleKey="hero.subtitle"
|
|
ctaLabelKey="hero.cta"
|
|
images={HERO_IMAGES}
|
|
/>
|
|
<About />
|
|
<ProductsGrid />
|
|
<FAQ />
|
|
<ContactForm />
|
|
<Footer />
|
|
</main>
|
|
);
|
|
}
|