25 lines
571 B
TypeScript
25 lines
571 B
TypeScript
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";
|
|
|
|
const HERO_IMAGES = [
|
|
"/product/product.jpg",
|
|
"/product/product1.jpg",
|
|
"/product/product2.jpg",
|
|
"/product/product3.jpg",
|
|
];
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main>
|
|
<ShowCase images={HERO_IMAGES} />
|
|
<About />
|
|
<ProductsGrid />
|
|
<FAQ />
|
|
<ContactForm />
|
|
</main>
|
|
);
|
|
}
|