Update src/app/shop/page.tsx

This commit is contained in:
2026-03-03 15:15:56 +00:00
parent ee265f4698
commit 5e1b4a64fc

View File

@@ -17,9 +17,7 @@ export default function ShopPage() {
];
const navButton = {
text: "Book Appointment",
href: "/appointment",
};
text: "Book Appointment", href: "/appointment"};
return (
<ThemeProvider
@@ -51,47 +49,17 @@ export default function ShopPage() {
description="Explore our full range of premium eyewear across all categories. From everyday classics to luxury designer frames, find your perfect style."
products={[
{
id: "1",
name: "Everyday Collection",
price: "From $149",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-woman-big-city-woman-big-city_169016-66673.jpg?_wi=2",
imageAlt: "Everyday eyewear collection",
},
id: "1", name: "Everyday Collection", price: "From $149", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-woman-big-city-woman-big-city_169016-66673.jpg?_wi=2", imageAlt: "Everyday eyewear collection"},
{
id: "2",
name: "Premium Designer",
price: "From $349",
imageSrc: "http://img.b2bpic.net/free-photo/pretty-young-girl-with-brunette-hair-stylish-makeup-accessories-wearing-beret-white-red-clothes-holding-door-handle-looking-away_197531-28147.jpg?_wi=3",
imageAlt: "Premium designer frames",
},
id: "2", name: "Premium Designer", price: "From $349", imageSrc: "http://img.b2bpic.net/free-photo/pretty-young-girl-with-brunette-hair-stylish-makeup-accessories-wearing-beret-white-red-clothes-holding-door-handle-looking-away_197531-28147.jpg?_wi=3", imageAlt: "Premium designer frames"},
{
id: "3",
name: "Sport & Active",
price: "From $179",
imageSrc: "http://img.b2bpic.net/free-photo/young-fit-man-beach-wearing-sunglasses_273609-15952.jpg?_wi=2",
imageAlt: "Sports eyewear collection",
},
id: "3", name: "Sport & Active", price: "From $179", imageSrc: "http://img.b2bpic.net/free-photo/young-fit-man-beach-wearing-sunglasses_273609-15952.jpg?_wi=2", imageAlt: "Sports eyewear collection"},
{
id: "4",
name: "Sunglasses",
price: "From $199",
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-smiling-female-trendy-summer-red-dress-sexy-carefree-woman-posing-near-blue-wall-studio-positive-model-having-fun-cheerful-happy-sunny-day-shadow-from-window_158538-25864.jpg?_wi=2",
imageAlt: "Premium sunglasses",
},
id: "4", name: "Sunglasses", price: "From $199", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-smiling-female-trendy-summer-red-dress-sexy-carefree-woman-posing-near-blue-wall-studio-positive-model-having-fun-cheerful-happy-sunny-day-shadow-from-window_158538-25864.jpg?_wi=2", imageAlt: "Premium sunglasses"},
{
id: "5",
name: "Kids Frames",
price: "From $99",
imageSrc: "http://img.b2bpic.net/free-photo/cute-little-girl-holding-books-isolated-studio_1303-31007.jpg?_wi=2",
imageAlt: "Children eyewear",
},
id: "5", name: "Kids Frames", price: "From $99", imageSrc: "http://img.b2bpic.net/free-photo/cute-little-girl-holding-books-isolated-studio_1303-31007.jpg?_wi=2", imageAlt: "Children eyewear"},
{
id: "6",
name: "Blue-Light Protection",
price: "From $129",
imageSrc: "http://img.b2bpic.net/free-photo/black-office-business-equipment-black-background_1387-730.jpg?_wi=2",
imageAlt: "Blue light filtering glasses",
},
id: "6", name: "Blue-Light Protection", price: "From $129", imageSrc: "http://img.b2bpic.net/free-photo/black-office-business-equipment-black-background_1387-730.jpg?_wi=2", imageAlt: "Blue light filtering glasses"},
]}
gridVariant="bento-grid"
animationType="slide-up"
@@ -126,22 +94,16 @@ export default function ShopPage() {
socialLinks={[
{
icon: Instagram,
href: "https://instagram.com/pearleeyewear",
ariaLabel: "Follow Pearle on Instagram",
},
href: "https://instagram.com/pearleeyewear", ariaLabel: "Follow Pearle on Instagram"},
{
icon: Facebook,
href: "https://facebook.com/pearleeyewear",
ariaLabel: "Visit Pearle on Facebook",
},
href: "https://facebook.com/pearleeyewear", ariaLabel: "Visit Pearle on Facebook"},
{
icon: Linkedin,
href: "https://linkedin.com/company/pearleeyewear",
ariaLabel: "Connect with Pearle on LinkedIn",
},
href: "https://linkedin.com/company/pearleeyewear", ariaLabel: "Connect with Pearle on LinkedIn"},
]}
/>
</div>
</ThemeProvider>
);
}
}