mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-06 02:36:44 -05:00
moved crap
This commit is contained in:
@@ -1,8 +1,8 @@
|
|||||||
import { Provider } from "../components/ui/provider"
|
import { Provider } from "../components/ui/provider"
|
||||||
import "../styles/globals.css";
|
import "../styles/globals.css";
|
||||||
export const metadata = {
|
export const metadata = {
|
||||||
title: 'Next.js',
|
title: 'Ballistic Builder',
|
||||||
description: 'Generated by Next.js',
|
description: 'Product of Forward Group, LLC',
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function RootLayout(props: { children: React.ReactNode }) {
|
export default function RootLayout(props: { children: React.ReactNode }) {
|
||||||
|
|||||||
@@ -17,8 +17,7 @@ export default async function Home() {
|
|||||||
<FeaturesSection />
|
<FeaturesSection />
|
||||||
<About />
|
<About />
|
||||||
<Contact />
|
<Contact />
|
||||||
<Footer />
|
<Footer />
|
||||||
<Brands brands={data} />
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
12
src/pages/Brands/index.tsx
Normal file
12
src/pages/Brands/index.tsx
Normal 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>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
Reference in New Issue
Block a user