Merge version_1 into main #1

Merged
bender merged 1 commits from version_1 into main 2026-05-20 13:59:20 +00:00

View File

@@ -7,142 +7,70 @@ import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
export default function LandingPage() {
export default function ShopPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="small"
sizing="mediumSizeLargeTitles"
background="none"
cardStyle="gradient-mesh"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="medium"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Shop",
id: "/shop",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="CENTER OPTIKA"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
]}
brandName="CENTER OPTIKA"
/>
</div>
<div id="product" data-section="product">
<ProductCardThree
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="All Eyewear"
products={[
{
id: "e1",
name: "Classic Black",
price: "120,000 UZS",
imageSrc: "http://img.b2bpic.net/free-photo/optician-holding-eyeglasses-with-black-frame_23-2148310020.jpg",
},
{
id: "e2",
name: "Rose Gold Rim",
price: "180,000 UZS",
imageSrc: "http://img.b2bpic.net/free-photo/tenderness_176420-44700.jpg",
},
{
id: "e3",
name: "Academic Style",
price: "140,000 UZS",
imageSrc: "http://img.b2bpic.net/free-photo/pair-glasses-books-educational-academic-literary-concept_53876-42026.jpg",
},
{
id: "e4",
name: "Trendy Clear",
price: "160,000 UZS",
imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-looking-new-glasses-optometrist_23-2148196685.jpg",
},
{
id: "e5",
name: "Modern Matte",
price: "190,000 UZS",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-modern-black-sunglasses-grey-background-isolated-vision-spectacles-elegance_140725-16984.jpg",
},
]}
/>
</div>
<div id="product" data-section="product">
<ProductCardThree
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="All Eyewear"
description="Discover our curated selection of high-quality eyewear."
products={[
{
id: "e1", name: "Classic Black", price: "120,000 UZS", imageSrc: "http://img.b2bpic.net/free-photo/optician-holding-eyeglasses-with-black-frame_23-2148310020.jpg"
},
{
id: "e2", name: "Rose Gold Rim", price: "180,000 UZS", imageSrc: "http://img.b2bpic.net/free-photo/tenderness_176420-44700.jpg"
},
{
id: "e3", name: "Academic Style", price: "140,000 UZS", imageSrc: "http://img.b2bpic.net/free-photo/pair-glasses-books-educational-academic-literary-concept_53876-42026.jpg"
},
{
id: "e4", name: "Trendy Clear", price: "160,000 UZS", imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-looking-new-glasses-optometrist_23-2148196685.jpg"
},
{
id: "e5", name: "Modern Matte", price: "190,000 UZS", imageSrc: "http://img.b2bpic.net/free-photo/top-view-modern-black-sunglasses-grey-background-isolated-vision-spectacles-elegance_140725-16984.jpg"
}
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={false}
background={{
variant: "plain",
}}
tag="Support"
title="Need Advice?"
description="Speak with our specialists to find your perfect fit."
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Store",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Shop Now",
href: "/shop",
},
],
},
{
title: "Contact",
items: [
{
label: "+998 95 705 99 39",
href: "tel:+998957059939",
},
{
label: "WhatsApp",
href: "https://wa.me/998957059939",
},
],
},
{
title: "Location",
items: [
{
label: "75HX+3JG, Tashkent",
href: "#",
},
],
},
]}
bottomLeftText="© 2024 CENTER OPTIKA"
bottomRightText="Open daily 07:00 - 22:00"
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Support"
title="Need Advice?"
description="Speak with our specialists to find your perfect fit."
/>
</div>
</ReactLenis>
</ThemeProvider>
);