Files
ballistic-builder/src/app/page.tsx

25 lines
727 B
TypeScript
Raw Normal View History

import FeaturesSection from "../components/FeaturesSection";
import About from "../components/About";
import Header from "../components/Header";
import Hero from "../components/Hero";
import Contact from "../components/Contact";
import Footer from "../components/Footer ";
2024-11-20 16:37:54 -05:00
import { ChakraProvider } from "@chakra-ui/react";
2024-11-21 15:24:37 -05:00
import { getData } from "../actions/brandActions";
import Brands from "../components/Brand/brands";
2024-11-14 12:45:58 -05:00
2024-11-21 15:24:37 -05:00
export default async function Home() {
const data = await getData();
2024-11-14 12:45:58 -05:00
return (
2024-11-20 16:37:54 -05:00
<div className="bg-gray-100 min-h-screen flex flex-col">
2024-11-21 13:03:00 -05:00
<Header />
2024-11-20 14:53:30 -05:00
<Hero />
<FeaturesSection />
<About />
<Contact />
<Footer />
2024-11-21 15:24:37 -05:00
<Brands brands={data} />
2024-11-20 16:37:54 -05:00
</div>
2024-11-14 12:45:58 -05:00
);
2024-11-21 15:24:37 -05:00
}