chakura clean up

This commit is contained in:
2024-12-11 14:29:02 -05:00
parent 273e310ee3
commit 54462af1d5
8 changed files with 26 additions and 54 deletions

View File

@@ -2,26 +2,35 @@ import NextLink from 'next/link';
const Header: React.FC = () => {
return (
<header style={{ backgroundColor: '#7C8C58', color: 'white', padding: '16px 24px', boxShadow: '0 4px 6px rgba(0, 0, 0, 0.1)' }}>
(<header style={{ backgroundColor: '#7C8C58', color: 'white', padding: '16px 24px', boxShadow: '0 4px 6px rgba(0, 0, 0, 0.1)' }}>
<div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center', maxWidth: '80rem', margin: '0 auto' }}>
<h1 style={{ fontSize: '1.5rem' }}>
<NextLink href="/" passHref>
<a style={{ color: '#374151', textDecoration: 'none' }}>Ballistic Builder</a>
<h1 style={{ fontSize: '1.5rem', }}>
<NextLink href="/" passHref style={{ color: '#FFFFFF', textDecoration: 'none' }}>
Ballistic Builder
</NextLink>
</h1>
<nav style={{ display: 'flex', gap: '24px' }}>
<NextLink href="/builder" passHref>
<a style={{ color: '#374151', textDecoration: 'underline' }}>Builder</a>
<NextLink
href="/Builder"
passHref
style={{ color: '#FFFFFF', textDecoration: 'underline' }}>
Builder
</NextLink>
<NextLink href="/products" passHref>
<a style={{ color: '#374151', textDecoration: 'underline' }}>Products</a>
<NextLink
href="/Products"
passHref
style={{ color: '#FFFFFF', textDecoration: 'underline' }}>
Products
</NextLink>
<NextLink href="/auth/signin" passHref>
<a style={{ color: '#374151', textDecoration: 'underline' }}>Sign In</a>
<NextLink
href="/auth/signin"
passHref
style={{ color: '#FFFFFF', textDecoration: 'underline' }}>
Sign In
</NextLink>
</nav>
</div>
</header>
</header>)
);
};

View File

@@ -13,7 +13,7 @@ import Image from "next/image";
const navigation = [
{ name: "Home", href: "/", current: true },
{ name: "Builder", href: "/Builder", current: false },
{ name: "Products", href: "/products", current: false },
{ name: "Products", href: "/Products", current: false },
{ name: "Completed Builds", href: "#", current: false },
{ name: "Brands", href: "/Brands", current: false },
];