THE LAST ONE BEFORE THE RELEASE

This commit is contained in:
User
2025-02-15 17:41:30 +03:00
parent 646f926c8f
commit a8d15c56f3
242 changed files with 1314 additions and 8683 deletions

View File

@@ -19,10 +19,11 @@ export function Header() {
return (
<header className="border-b sticky top-0 bg-white z-50">
<div className="container mx-auto px-4">
<div className="flex h-16 items-center justify-between">
<div className="flex items-center gap-4">
<Link href="/" className="text-2xl font-bold text-blue-600">
STORE
<div className="flex flex-col md:flex-row h-auto md:h-16 items-center justify-between">
<div className="flex items-center gap-4 mt-4 md:mt-0">
{/* Используем отступ слева для надписи STORE */}
<Link href="/" className="text-2xl font-bold text-blue-600 ml-[100px] md:ml-0">
ETRNOS
</Link>
<div className="hidden md:block">
<CatalogMenu />
@@ -87,5 +88,4 @@ export function Header() {
</div>
</header>
)
}
}