Обновить цветовую схему и стили страниц каталога, коллекций и категорий
This commit is contained in:
parent
c506682a3e
commit
fbd240efec
@ -40,7 +40,7 @@ export default function Header() {
|
||||
<nav className="py-4 transition-all duration-300 text-black">
|
||||
<div className="container mx-auto px-4 flex items-center justify-between">
|
||||
<div className="flex items-center space-x-6">
|
||||
{isDetailPage && (
|
||||
{/* {isDetailPage && (
|
||||
<button
|
||||
onClick={goBack}
|
||||
className="flex items-center text-sm font-medium hover:opacity-70 transition-opacity mr-4"
|
||||
@ -48,7 +48,7 @@ export default function Header() {
|
||||
<ChevronLeft className="w-4 h-4 mr-1" />
|
||||
Назад
|
||||
</button>
|
||||
)}
|
||||
)} */}
|
||||
<Link href="/category" className="text-sm font-medium hover:opacity-70 transition-opacity">
|
||||
Каталог
|
||||
</Link>
|
||||
|
||||
@ -45,7 +45,7 @@ export default function CategoryPage({ category, products }: CategoryPageProps)
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="min-h-screen bg-[#E2E2C1] font-['Arimo']">
|
||||
<div className="min-h-screen bg-white font-['Arimo']">
|
||||
<Head>
|
||||
<title>{category.name} | Brand Store</title>
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
|
||||
@ -11,7 +11,7 @@ export default function Categories() {
|
||||
const [hoveredCategory, setHoveredCategory] = useState<number | null>(null);
|
||||
|
||||
return (
|
||||
<div className="min-h-screen bg-[#E2E2C1] font-['Arimo']">
|
||||
<div className="min-h-screen bg-[#2B5F47] font-['Arimo']">
|
||||
<Head>
|
||||
<title>Каталог | Brand Store</title>
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
@ -26,7 +26,7 @@ export default function Categories() {
|
||||
initial={{ opacity: 0, y: -20 }}
|
||||
animate={{ opacity: 1, y: 0 }}
|
||||
transition={{ duration: 0.5 }}
|
||||
className="text-3xl md:text-4xl font-bold mb-8 text-[#2B5F47] text-center"
|
||||
className="text-3xl md:text-4xl font-bold mb-8 text-white text-center"
|
||||
>
|
||||
Каталог
|
||||
</motion.h1>
|
||||
|
||||
@ -11,7 +11,7 @@ export default function Collections() {
|
||||
const [hoveredCollection, setHoveredCollection] = useState<number | null>(null);
|
||||
|
||||
return (
|
||||
<div className="min-h-screen bg-[#E2E2C1] font-['Arimo']">
|
||||
<div className="min-h-screen bg-[#2B5F47] font-['Arimo']">
|
||||
<Head>
|
||||
<title>Коллекции | Brand Store</title>
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
@ -26,7 +26,7 @@ export default function Collections() {
|
||||
initial={{ opacity: 0, y: -20 }}
|
||||
animate={{ opacity: 1, y: 0 }}
|
||||
transition={{ duration: 0.5 }}
|
||||
className="text-3xl md:text-4xl font-bold mb-8 text-[#2B5F47] text-center"
|
||||
className="text-3xl md:text-4xl font-bold mb-8 text-white text-center"
|
||||
>
|
||||
Наши коллекции
|
||||
</motion.h1>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user