2024-11-26 11:58:39 -05:00
|
|
|
import NextLink from 'next/link';
|
2024-11-20 14:53:30 -05:00
|
|
|
|
2024-11-21 13:03:00 -05:00
|
|
|
const Header: React.FC = () => {
|
2024-11-20 14:53:30 -05:00
|
|
|
return (
|
2024-12-11 14:20:08 -05:00
|
|
|
<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>
|
|
|
|
|
</NextLink>
|
|
|
|
|
</h1>
|
|
|
|
|
<nav style={{ display: 'flex', gap: '24px' }}>
|
|
|
|
|
<NextLink href="/builder" passHref>
|
|
|
|
|
<a style={{ color: '#374151', textDecoration: 'underline' }}>Builder</a>
|
|
|
|
|
</NextLink>
|
|
|
|
|
<NextLink href="/products" passHref>
|
|
|
|
|
<a style={{ color: '#374151', textDecoration: 'underline' }}>Products</a>
|
|
|
|
|
</NextLink>
|
|
|
|
|
<NextLink href="/auth/signin" passHref>
|
|
|
|
|
<a style={{ color: '#374151', textDecoration: 'underline' }}>Sign In</a>
|
|
|
|
|
</NextLink>
|
|
|
|
|
</nav>
|
|
|
|
|
</div>
|
|
|
|
|
</header>
|
2024-11-21 13:03:00 -05:00
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default Header;
|