Almost all content on home page

This commit is contained in:
2024-09-23 23:05:32 +05:30
parent 322c92982d
commit fc237d8b9f
30 changed files with 699 additions and 376 deletions

View File

@ -1,21 +1,27 @@
// components/Navbar.tsx
export default function Navbar() {
return (
<nav className="navbar">
<div className="left">
<a href="#about-us">About Us</a>
<a href="#shop">Shop</a>
return (
<nav className='navbar'>
<div className='left'>
<a href='#about-us'>About Us</a>
<a href='#shop'>Shop</a>
</div>
<div className="center">
<a href="/" className="mx-0"><img src="/images/logo.png" alt="Logo" className="logo" /></a>
<div className='center'>
<a href='/' className='mx-0'>
<img src='/images/logo.png' alt='Logo' className='logo' />
</a>
</div>
<div className="right">
<a href="#search"><span className="material-symbols-outlined">search</span></a>
<a href="#shopping"><span className="material-symbols-outlined">shopping_bag</span></a>
<a href="#profile"><span className="material-symbols-outlined">person</span></a>
<div className='right'>
<a href='#search'>
<span className='material-symbols-outlined'>search</span>
</a>
<a href='#shopping'>
<span className='material-symbols-outlined'>shopping_bag</span>
</a>
<a href='#profile'>
<span className='material-symbols-outlined'>person</span>
</a>
</div>
</nav>
);
}
);
}