Update src/app/galleries/page.tsx
This commit is contained in:
@@ -27,25 +27,15 @@ export default function LandingPage() {
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Galleries",
|
||||
id: "/galleries",
|
||||
},
|
||||
name: "Galleries", id: "/galleries"},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
name: "About", id: "/about"},
|
||||
{
|
||||
name: "Prints",
|
||||
id: "/prints",
|
||||
},
|
||||
name: "Prints", id: "/prints"},
|
||||
{
|
||||
name: "Journal",
|
||||
id: "/journal",
|
||||
},
|
||||
name: "Journal", id: "/journal"},
|
||||
]}
|
||||
brandName="Yves Gagnon"
|
||||
/>
|
||||
@@ -58,19 +48,13 @@ export default function LandingPage() {
|
||||
metrics={[
|
||||
{
|
||||
icon: MapPin,
|
||||
label: "Global Journeys",
|
||||
value: "Diverse Locations",
|
||||
},
|
||||
label: "Global Journeys", value: "Diverse Locations"},
|
||||
{
|
||||
icon: Lightbulb,
|
||||
label: "Atmospheric Light",
|
||||
value: "Mood & Emotion",
|
||||
},
|
||||
label: "Atmospheric Light", value: "Mood & Emotion"},
|
||||
{
|
||||
icon: Camera,
|
||||
label: "Artistic Vision",
|
||||
value: "Unique Perspectives",
|
||||
},
|
||||
label: "Artistic Vision", value: "Unique Perspectives"},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -84,52 +68,22 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "san-miguel",
|
||||
name: "San Miguel de Allende",
|
||||
price: "View Collection",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-colorful-mexican-urban-architecture_23-2149749955.jpg",
|
||||
imageAlt: "San Miguel de Allende cinematic street photography",
|
||||
onProductClick: "() => {}",
|
||||
id: "san-miguel", name: "San Miguel de Allende", price: "View Collection", imageSrc: "http://img.b2bpic.net/free-photo/view-colorful-mexican-urban-architecture_23-2149749955.jpg", imageAlt: "San Miguel de Allende cinematic street photography", onProductClick: () => {},
|
||||
},
|
||||
{
|
||||
id: "canadian-rockies",
|
||||
name: "Canadian Rockies",
|
||||
price: "View Collection",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-seafloor-with-breathtaking-textures-great-unique-background-wallpaper_181624-5222.jpg",
|
||||
imageAlt: "Dramatic Canadian Rockies landscapes",
|
||||
onProductClick: "() => {}",
|
||||
id: "canadian-rockies", name: "Canadian Rockies", price: "View Collection", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-seafloor-with-breathtaking-textures-great-unique-background-wallpaper_181624-5222.jpg", imageAlt: "Dramatic Canadian Rockies landscapes", onProductClick: () => {},
|
||||
},
|
||||
{
|
||||
id: "cityscapes",
|
||||
name: "Cityscapes",
|
||||
price: "View Collection",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-architecture-window-building-pattern_1203-2435.jpg",
|
||||
imageAlt: "Architecture and cityscapes",
|
||||
onProductClick: "() => {}",
|
||||
id: "cityscapes", name: "Cityscapes", price: "View Collection", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-architecture-window-building-pattern_1203-2435.jpg", imageAlt: "Architecture and cityscapes", onProductClick: () => {},
|
||||
},
|
||||
{
|
||||
id: "film-photography",
|
||||
name: "Film Photography",
|
||||
price: "View Collection",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/photographer-using-vintage-camera_53876-14325.jpg",
|
||||
imageAlt: "Film photography",
|
||||
onProductClick: "() => {}",
|
||||
id: "film-photography", name: "Film Photography", price: "View Collection", imageSrc: "http://img.b2bpic.net/free-photo/photographer-using-vintage-camera_53876-14325.jpg", imageAlt: "Film photography", onProductClick: () => {},
|
||||
},
|
||||
{
|
||||
id: "black-and-white",
|
||||
name: "Black and White",
|
||||
price: "View Collection",
|
||||
imageSrc: "asset://collection-black-and-white",
|
||||
imageAlt: "Black and white photography",
|
||||
onProductClick: "() => {}",
|
||||
id: "black-and-white", name: "Black and White", price: "View Collection", imageSrc: "asset://collection-black-and-white", imageAlt: "Black and white photography", onProductClick: () => {},
|
||||
},
|
||||
{
|
||||
id: "travel-stories",
|
||||
name: "Travel Stories",
|
||||
price: "View Collection",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/travel-writing-map-near-tourist-stuff_23-2147793429.jpg",
|
||||
imageAlt: "Travel photography",
|
||||
onProductClick: "() => {}",
|
||||
id: "travel-stories", name: "Travel Stories", price: "View Collection", imageSrc: "http://img.b2bpic.net/free-photo/travel-writing-map-near-tourist-stuff_23-2147793429.jpg", imageAlt: "Travel photography", onProductClick: () => {},
|
||||
},
|
||||
]}
|
||||
title="Explore Photography Collections"
|
||||
@@ -143,49 +97,31 @@ export default function LandingPage() {
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
label: "Home", href: "/"},
|
||||
{
|
||||
label: "Galleries",
|
||||
href: "/galleries",
|
||||
},
|
||||
label: "Galleries", href: "/galleries"},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
label: "About", href: "/about"},
|
||||
{
|
||||
label: "Prints",
|
||||
href: "/prints",
|
||||
},
|
||||
label: "Prints", href: "/prints"},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Journal",
|
||||
href: "/journal",
|
||||
},
|
||||
label: "Journal", href: "/journal"},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/#contact",
|
||||
},
|
||||
label: "Contact", href: "/#contact"},
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "https://www.instagram.com/yvesgagnonphotography",
|
||||
},
|
||||
label: "Instagram", href: "https://www.instagram.com/yvesgagnonphotography"},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
label: "Privacy Policy", href: "#"},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
label: "Terms of Service", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user