This commit is contained in:
2024-11-21 17:11:28 -05:00
parent e775d88460
commit 780f3ca8be
2 changed files with 4 additions and 5 deletions

12
src/app/Brands/page.tsx Normal file
View File

@@ -0,0 +1,12 @@
import { getData } from "../../actions/brandActions";
import Brands from "../../components/Brand/brands";
export default async function BrandsPage() {
const data = await getData();
return (
<div className="bg-gray-100 min-h-screen flex flex-col">
<Brands brands={data} />
</div>
);
}

View File

@@ -1,11 +1,10 @@
import FeaturesSection from "../components/FeaturesSection";
import About from "../components/About";
import Contact from "../components/Contact";
import FeaturesSection from "../components/FeaturesSection";
import Footer from "../components/Footer ";
import Header from "../components/Header";
import Hero from "../components/Hero";
import Contact from "../components/Contact";
import Footer from "../components/Footer ";
import Navbar from "../components/Navbar"
import { ChakraProvider } from "@chakra-ui/react";
import Navbar from "../components/Navbar";
export default async function Home() {