diff --git a/src/app/Brands/layout.bk b/src/app/Brands/layout.bk new file mode 100644 index 0000000..34bdd9d --- /dev/null +++ b/src/app/Brands/layout.bk @@ -0,0 +1,16 @@ +// export const metadata = { +// title: 'Ballistic Bu8ilder', +// description: 'Generated by Forward Group, LLC', +// } + +// export default function RootLayout({ +// children, +// }: { +// children: React.ReactNode +// }) { +// return ( +// +// {children} +// +// ) +// } diff --git a/src/app/Brands/layout.tsx b/src/app/Brands/layout.tsx deleted file mode 100644 index 74476b0..0000000 --- a/src/app/Brands/layout.tsx +++ /dev/null @@ -1,16 +0,0 @@ -export const metadata = { - title: 'Ballistic Bu8ilder', - description: 'Generated by Forward Group, LLC', -} - -export default function RootLayout({ - children, -}: { - children: React.ReactNode -}) { - return ( - - {children} - - ) -} diff --git a/src/components/Navbar/index.tsx b/src/components/Navbar/index.tsx index ed2b44c..a321320 100644 --- a/src/components/Navbar/index.tsx +++ b/src/components/Navbar/index.tsx @@ -14,7 +14,7 @@ import Link from "next/link"; const navigation = [ { name: "Armory", href: "/Armory", current: false }, { name: "Products", href: "/Products", current: false }, - { name: "Db Data", href: "/Products/lowers", current: false }, + { name: "Lowers", href: "/Products/lowers", current: false }, { name: "Brands", href: "/Brands", current: false }, ]; @@ -29,7 +29,7 @@ export default function Navbar() {
{/* Mobile menu button*/} - + {/* Open main menu + */}

Ballistics Builder

-
+ + {/*
{navigation.map((item) => ( ))}
-
+
*/}
- {/* Profile dropdown */} @@ -82,7 +75,8 @@ export default function Navbar() { Open user menu - {/* @@ -123,7 +127,10 @@ export default function PopNav() {
{navigation.categories.map((category) => ( - +
{category.featured.map((item) => (
@@ -132,8 +139,14 @@ export default function PopNav() { src={item.imageSrc} className="aspect-square w-full rounded-lg bg-gray-100 object-cover group-hover:opacity-75" /> - - +
{category.sections.map((section) => (
-

+

{section.name}

    {section.items.map((item) => (
  • - + {item.name}
  • @@ -170,7 +189,10 @@ export default function PopNav() {
    {navigation.pages.map((page) => ( @@ -179,12 +201,18 @@ export default function PopNav() {
    @@ -197,7 +225,9 @@ export default function PopNav() { src="https://tailwindui.com/plus/img/flags/flag-canada.svg" className="block h-auto w-5 shrink-0" /> - CAD + + CAD + , change currency
    @@ -210,7 +240,10 @@ export default function PopNav() { Get free delivery on orders over $100

    */} -
    - ) + ); }