Update src/app/page.tsx
This commit is contained in:
168
src/app/page.tsx
168
src/app/page.tsx
@@ -9,7 +9,7 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
|
||||
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||
import { Film, Heart, Star } from "lucide-react";
|
||||
import { Film, Heart, Star, ArrowRight } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -30,25 +30,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"
|
||||
/>
|
||||
@@ -57,19 +47,14 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboard
|
||||
background={{
|
||||
variant: "downward-rays-static",
|
||||
}}
|
||||
variant: "downward-rays-static"}}
|
||||
logoText="Yves Gagnon"
|
||||
description="A Visual Journey Through Cinematic Fine Art Photography."
|
||||
buttons={[
|
||||
{
|
||||
text: "Explore Galleries",
|
||||
href: "/galleries",
|
||||
},
|
||||
text: "Explore Galleries", href: "/galleries"},
|
||||
{
|
||||
text: "About Yves",
|
||||
href: "/about",
|
||||
},
|
||||
text: "About Yves", href: "/about"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/girls-sitting-shore-sunset-lake-polka-new-zealand_181624-13368.jpg"
|
||||
imageAlt="Cinematic fine art photography"
|
||||
@@ -84,19 +69,13 @@ export default function LandingPage() {
|
||||
metrics={[
|
||||
{
|
||||
icon: Film,
|
||||
label: "Cinematic Vision",
|
||||
value: "Immersive Storytelling",
|
||||
},
|
||||
label: "Cinematic Vision", value: "Immersive Storytelling"},
|
||||
{
|
||||
icon: Heart,
|
||||
label: "Emotional Depth",
|
||||
value: "Authentic Connection",
|
||||
},
|
||||
label: "Emotional Depth", value: "Authentic Connection"},
|
||||
{
|
||||
icon: Star,
|
||||
label: "Refined Artistry",
|
||||
value: "Curated Experiences",
|
||||
},
|
||||
label: "Refined Artistry", value: "Curated Experiences"},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -108,32 +87,16 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "San Miguel de Allende",
|
||||
description: "The vibrant pulse of Mexican streets captured with cinematic flair.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/night-view-old-narrow-street_1398-32.jpg",
|
||||
imageAlt: "Cinematic street photography from San Miguel de Allende",
|
||||
buttonIcon: "ArrowRight",
|
||||
title: "San Miguel de Allende", description: "The vibrant pulse of Mexican streets captured with cinematic flair.", imageSrc: "http://img.b2bpic.net/free-photo/night-view-old-narrow-street_1398-32.jpg", imageAlt: "Cinematic street photography from San Miguel de Allende", buttonIcon: ArrowRight,
|
||||
},
|
||||
{
|
||||
title: "Canadian Rockies Dramatics",
|
||||
description: "Epic landscapes and raw emotional power of Canada's majestic mountains.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gray-snowy-mountain_198169-396.jpg",
|
||||
imageAlt: "Dramatic Canadian Rockies landscapes",
|
||||
buttonIcon: "ArrowRight",
|
||||
title: "Canadian Rockies Dramatics", description: "Epic landscapes and raw emotional power of Canada's majestic mountains.", imageSrc: "http://img.b2bpic.net/free-photo/gray-snowy-mountain_198169-396.jpg", imageAlt: "Dramatic Canadian Rockies landscapes", buttonIcon: ArrowRight,
|
||||
},
|
||||
{
|
||||
title: "Cityscapes & Architecture",
|
||||
description: "Urban environments transformed into atmospheric visual poems.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/urban-mysterious-lights-film-aesthetic_23-2149098553.jpg",
|
||||
imageAlt: "Architecture and cityscapes",
|
||||
buttonIcon: "ArrowRight",
|
||||
title: "Cityscapes & Architecture", description: "Urban environments transformed into atmospheric visual poems.", imageSrc: "http://img.b2bpic.net/free-photo/urban-mysterious-lights-film-aesthetic_23-2149098553.jpg", imageAlt: "Architecture and cityscapes", buttonIcon: ArrowRight,
|
||||
},
|
||||
{
|
||||
title: "The Art of Film Photography",
|
||||
description: "Exploring timeless beauty through the tactile depth of analog film.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/photographic-film-wooden-background_1204-381.jpg",
|
||||
imageAlt: "Film photography",
|
||||
buttonIcon: "ArrowRight",
|
||||
title: "The Art of Film Photography", description: "Exploring timeless beauty through the tactile depth of analog film.", imageSrc: "http://img.b2bpic.net/free-photo/photographic-film-wooden-background_1204-381.jpg", imageAlt: "Film photography", buttonIcon: ArrowRight,
|
||||
},
|
||||
]}
|
||||
title="Featured Photography Collections"
|
||||
@@ -147,65 +110,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah Johnson",
|
||||
date: "October 2023",
|
||||
title: "A Master of Atmosphere",
|
||||
quote: "Yves's work transcends photography; it’s an immersive experience. Each print feels like a window into another world, rich with emotion and cinematic depth.",
|
||||
tag: "Collector",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/van-gogh-portrait_23-2149737738.jpg",
|
||||
avatarAlt: "Sarah Johnson",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-going-art-gallery_23-2149709096.jpg",
|
||||
imageAlt: "Fine art print",
|
||||
},
|
||||
id: "1", name: "Sarah Johnson", date: "October 2023", title: "A Master of Atmosphere", quote: "Yves's work transcends photography; it’s an immersive experience. Each print feels like a window into another world, rich with emotion and cinematic depth.", tag: "Collector", avatarSrc: "http://img.b2bpic.net/free-photo/van-gogh-portrait_23-2149737738.jpg", avatarAlt: "Sarah Johnson", imageSrc: "http://img.b2bpic.net/free-photo/young-man-going-art-gallery_23-2149709096.jpg", imageAlt: "Fine art print"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Michael Chen",
|
||||
date: "September 2023",
|
||||
title: "Visual Poetry",
|
||||
quote: "The way Yves captures light and shadow is simply breathtaking. His cityscapes have a dramatic presence that continually captivates me.",
|
||||
tag: "Art Enthusiast",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/young-man-posing-black-white-medium-shot_23-2149411423.jpg",
|
||||
avatarAlt: "Michael Chen",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cars-parked-parking-lot_53876-18017.jpg",
|
||||
imageAlt: "Fine art print",
|
||||
},
|
||||
id: "2", name: "Michael Chen", date: "September 2023", title: "Visual Poetry", quote: "The way Yves captures light and shadow is simply breathtaking. His cityscapes have a dramatic presence that continually captivates me.", tag: "Art Enthusiast", avatarSrc: "http://img.b2bpic.net/free-photo/young-man-posing-black-white-medium-shot_23-2149411423.jpg", avatarAlt: "Michael Chen", imageSrc: "http://img.b2bpic.net/free-photo/cars-parked-parking-lot_53876-18017.jpg", imageAlt: "Fine art print"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily Rodriguez",
|
||||
date: "August 2023",
|
||||
title: "Emotionally Powerful",
|
||||
quote: "His travel stories are not just photographs, but profound narratives that stir the soul. You don't just see the image; you feel it.",
|
||||
tag: "Gallery Curator",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/top-view-notebooks-pens_179666-47218.jpg",
|
||||
avatarAlt: "Emily Rodriguez",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cool-background-blank-wallpaper-place-your-concept_1194-641482.jpg",
|
||||
imageAlt: "Fine art print",
|
||||
},
|
||||
id: "3", name: "Emily Rodriguez", date: "August 2023", title: "Emotionally Powerful", quote: "His travel stories are not just photographs, but profound narratives that stir the soul. You don't just see the image; you feel it.", tag: "Gallery Curator", avatarSrc: "http://img.b2bpic.net/free-photo/top-view-notebooks-pens_179666-47218.jpg", avatarAlt: "Emily Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/cool-background-blank-wallpaper-place-your-concept_1194-641482.jpg", imageAlt: "Fine art print"},
|
||||
{
|
||||
id: "4",
|
||||
name: "David Kim",
|
||||
date: "July 2023",
|
||||
title: "Leica Minimalism",
|
||||
quote: "Yves perfectly embodies the minimalist aesthetic, yet delivers such impactful imagery. His attention to detail is truly inspiring.",
|
||||
tag: "Photographer",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-posing-with-yellow-jacket_23-2149020793.jpg",
|
||||
avatarAlt: "David Kim",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/frame-mock-up-with-monochrome-background-mockup_23-2148252416.jpg",
|
||||
imageAlt: "Fine art print",
|
||||
},
|
||||
id: "4", name: "David Kim", date: "July 2023", title: "Leica Minimalism", quote: "Yves perfectly embodies the minimalist aesthetic, yet delivers such impactful imagery. His attention to detail is truly inspiring.", tag: "Photographer", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-posing-with-yellow-jacket_23-2149020793.jpg", avatarAlt: "David Kim", imageSrc: "http://img.b2bpic.net/free-photo/frame-mock-up-with-monochrome-background-mockup_23-2148252416.jpg", imageAlt: "Fine art print"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Jessica Lee",
|
||||
date: "June 2023",
|
||||
title: "A True Artist",
|
||||
quote: "Owning a print by Yves Gagnon is like having a piece of a cinematic masterpiece in your home. The quality and artistic vision are unparalleled.",
|
||||
tag: "Art Collector",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/beautiful-portrait-teenager-woman_23-2149453358.jpg",
|
||||
avatarAlt: "Jessica Lee",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-creamy-white-foam-with-orange-watercolor-splash_23-2148078995.jpg",
|
||||
imageAlt: "Fine art print",
|
||||
},
|
||||
id: "5", name: "Jessica Lee", date: "June 2023", title: "A True Artist", quote: "Owning a print by Yves Gagnon is like having a piece of a cinematic masterpiece in your home. The quality and artistic vision are unparalleled.", tag: "Art Collector", avatarSrc: "http://img.b2bpic.net/free-photo/beautiful-portrait-teenager-woman_23-2149453358.jpg", avatarAlt: "Jessica Lee", imageSrc: "http://img.b2bpic.net/free-photo/close-up-creamy-white-foam-with-orange-watercolor-splash_23-2148078995.jpg", imageAlt: "Fine art print"},
|
||||
]}
|
||||
title="Collector Endorsements"
|
||||
description="Hear from art enthusiasts and collectors on the impact and emotional resonance of Yves Gagnon's work."
|
||||
@@ -216,8 +129,7 @@ export default function LandingPage() {
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
variant: "radial-gradient"}}
|
||||
tag="Connect"
|
||||
title="Inquiries & Commissions"
|
||||
description="Reach out for collaborations, fine art print inquiries, or simply to share your thoughts on the visual journey."
|
||||
@@ -233,49 +145,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