Обновить цветовую схему и стили страниц каталога, коллекций и категорий

This commit is contained in:
belikovme 2025-02-28 15:15:21 +07:00
parent c506682a3e
commit fbd240efec
4 changed files with 7 additions and 7 deletions

View File

@ -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>

View File

@ -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" />

View File

@ -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>

View File

@ -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>