Merge version_1 into main #2
@@ -7,7 +7,7 @@ import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ArtistsPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
@@ -22,92 +22,50 @@ export default function LandingPage() {
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Portfolio",
|
||||
id: "/portfolio",
|
||||
},
|
||||
{
|
||||
name: "Artists",
|
||||
id: "/artists",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Workshop",
|
||||
id: "/workshop",
|
||||
},
|
||||
]}
|
||||
brandName="Live Indian Painter"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardEleven
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Our Elite Artists"
|
||||
description="Expert painters dedicated to cinematic perfection."
|
||||
groups={[
|
||||
{
|
||||
id: "team-g1",
|
||||
groupTitle: "Lead Artists",
|
||||
members: [
|
||||
{
|
||||
id: "m1",
|
||||
title: "Ananya Rao",
|
||||
subtitle: "Founder & Principal Artist",
|
||||
detail: "Specializing in classical impressionism for Indian weddings.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-painting-canvas_23-2149736218.jpg",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
title: "Vikram Sethi",
|
||||
subtitle: "Senior Live Artist",
|
||||
detail: "Expert in capturing fast-paced, high-emotion ceremony moments.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/looking-far-away-mature-couple-have-leisure-days-working-paint-together-park_146671-16130.jpg",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/affectionate-indian-couple-celebrating-propose-day-together_23-2151111001.jpg?_wi=2",
|
||||
imageAlt: "Full shot man painting on canvas",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
tag="Join Us"
|
||||
title="Become a featured artist"
|
||||
description="We are always looking for exceptional talent to join our creative team."
|
||||
buttons={[
|
||||
{
|
||||
text: "Apply Now",
|
||||
href: "#",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Live Indian Painter"
|
||||
copyrightText="© 2025 | Live Indian Painter"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Portfolio", id: "/portfolio" },
|
||||
{ name: "Artists", id: "/artists" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Workshop", id: "/workshop" },
|
||||
]}
|
||||
brandName="Live Indian Painter"
|
||||
button={{ text: "Work With Us", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardEleven
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Our Elite Artists"
|
||||
description="Expert painters dedicated to cinematic perfection."
|
||||
groups={[
|
||||
{
|
||||
id: "team-g1", groupTitle: "Lead Artists", members: [
|
||||
{ id: "m1", title: "Ananya Rao", subtitle: "Founder & Principal Artist", detail: "Specializing in classical impressionism for Indian weddings." },
|
||||
{ id: "m2", title: "Vikram Sethi", subtitle: "Senior Live Artist", detail: "Expert in capturing fast-paced, high-emotion ceremony moments." },
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/affectionate-indian-couple-celebrating-propose-day-together_23-2151111001.jpg", imageAlt: "Full shot man painting on canvas"
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Join Us"
|
||||
title="Become a featured artist"
|
||||
description="We are always looking for exceptional talent to join our creative team."
|
||||
buttons={[{ text: "Apply Now", href: "#" }]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard logoText="Live Indian Painter" copyrightText="© 2025 | Live Indian Painter" />
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
269
src/app/page.tsx
269
src/app/page.tsx
@@ -25,190 +25,91 @@ export default function LandingPage() {
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Portfolio",
|
||||
id: "/portfolio",
|
||||
},
|
||||
{
|
||||
name: "Artists",
|
||||
id: "/artists",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Workshop",
|
||||
id: "/workshop",
|
||||
},
|
||||
]}
|
||||
brandName="Live Indian Painter"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
title="Your Wedding Moment, Painted Forever."
|
||||
description="Luxury live wedding paintings crafted in real time across India and destination weddings worldwide."
|
||||
buttons={[
|
||||
{
|
||||
text: "Explore The Experience",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
text: "Reserve Your Date",
|
||||
href: "/services",
|
||||
},
|
||||
]}
|
||||
carouselItems={[
|
||||
{
|
||||
id: "h1",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/affectionate-indian-couple-celebrating-propose-day-together_23-2151111001.jpg?_wi=1",
|
||||
imageAlt: "Luxury wedding couple painting live",
|
||||
},
|
||||
{
|
||||
id: "h2",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bride-groom-posing-vintage-motor-scooter_1153-5959.jpg",
|
||||
imageAlt: "Luxury wedding couple painting live",
|
||||
},
|
||||
{
|
||||
id: "h3",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/indian-couple-celebrating-propose-day-by-being-romantic-with-each-other_23-2151110931.jpg",
|
||||
imageAlt: "Luxury wedding couple painting live",
|
||||
},
|
||||
{
|
||||
id: "h4",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elegant-couple-draws-art-studio_1157-30462.jpg",
|
||||
imageAlt: "Luxury wedding couple painting live",
|
||||
},
|
||||
{
|
||||
id: "h5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elegant-wedding-couple-with-romantic-setting_23-2151976668.jpg",
|
||||
imageAlt: "Luxury wedding couple painting live",
|
||||
},
|
||||
{
|
||||
id: "h6",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-couple-looking-mirror-with-feather_23-2148395951.jpg",
|
||||
imageAlt: "Luxury wedding couple painting live",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="brand" data-section="brand">
|
||||
<TextAbout
|
||||
useInvertedBackground={false}
|
||||
title="More Than Art — A Timeless Wedding Experience."
|
||||
buttons={[
|
||||
{
|
||||
text: "Our Philosophy",
|
||||
href: "/portfolio",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="experience" data-section="experience">
|
||||
<FeatureCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="bento-grid"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Pre-Ceremony Sketch",
|
||||
description: "Laying the foundation for your story.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dreamy-picture-kissing-couple-dressed-30-s-style_8353-7458.jpg",
|
||||
},
|
||||
{
|
||||
title: "Live Painting",
|
||||
description: "Capturing the emotion in real-time.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-girl-painting-canvas_23-2148002531.jpg",
|
||||
},
|
||||
{
|
||||
title: "Heirloom Delivery",
|
||||
description: "Final reveal and packaging.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/look-from-bouquet-pinks-standing-rays-daylight_8353-625.jpg",
|
||||
},
|
||||
]}
|
||||
title="Signature Process"
|
||||
description="Artistry perfected through every stage."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Frequently Asked Questions"
|
||||
description="Everything you need to know about commissioning a live wedding painting."
|
||||
mediaAnimation="slide-up"
|
||||
faqsAnimation="opacity"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/woman-with-pink-hair-violet-robe-keds-stands-before-blue-sky_8353-1422.jpg"
|
||||
faqs={[
|
||||
{
|
||||
id: "faq-1",
|
||||
title: "How long does the painting take?",
|
||||
content: "Typically, the painting is completed during the wedding reception, providing guests with a beautiful view of the creation process.",
|
||||
},
|
||||
{
|
||||
id: "faq-2",
|
||||
title: "Do you travel for destination weddings?",
|
||||
content: "Yes, our artists are available for destination weddings across the globe to capture your special day.",
|
||||
},
|
||||
{
|
||||
id: "faq-3",
|
||||
title: "Can I request specific details?",
|
||||
content: "Absolutely. We work closely with you beforehand to ensure specific family members or details are included in your bespoke artwork.",
|
||||
},
|
||||
{
|
||||
id: "faq-4",
|
||||
title: "What medium do you use?",
|
||||
content: "We primarily use premium oils or acrylics to ensure a lasting, high-end fine art finish for your heirloom piece.",
|
||||
},
|
||||
{
|
||||
id: "faq-5",
|
||||
title: "How do we receive the painting?",
|
||||
content: "The painting is carefully packed and delivered post-wedding, ensuring it arrives in perfect, gallery-ready condition.",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
tag="Inquiry"
|
||||
title="Ready to immortalize your wedding day?"
|
||||
description="We are currently accepting bookings for the 2025-2026 wedding season. Reach out to check our availability."
|
||||
buttons={[
|
||||
{
|
||||
text: "Check Availability",
|
||||
href: "/services",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Live Indian Painter"
|
||||
copyrightText="© 2025 | Live Indian Painter"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Portfolio", id: "/portfolio" },
|
||||
{ name: "Artists", id: "/artists" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Workshop", id: "/workshop" },
|
||||
]}
|
||||
brandName="Live Indian Painter"
|
||||
button={{ text: "Contact Us", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Your Wedding Moment, Painted Forever."
|
||||
description="Luxury live wedding paintings crafted in real time across India and destination weddings worldwide."
|
||||
buttons={[
|
||||
{ text: "Explore The Experience", href: "#" },
|
||||
{ text: "Reserve Your Date", href: "/services" },
|
||||
]}
|
||||
carouselItems={[
|
||||
{ id: "h1", imageSrc: "http://img.b2bpic.net/free-photo/affectionate-indian-couple-celebrating-propose-day-together_23-2151111001.jpg", imageAlt: "Luxury wedding couple painting live" },
|
||||
{ id: "h2", imageSrc: "http://img.b2bpic.net/free-photo/bride-groom-posing-vintage-motor-scooter_1153-5959.jpg", imageAlt: "Luxury wedding couple painting live" },
|
||||
{ id: "h3", imageSrc: "http://img.b2bpic.net/free-photo/indian-couple-celebrating-propose-day-by-being-romantic-with-each-other_23-2151110931.jpg", imageAlt: "Luxury wedding couple painting live" },
|
||||
{ id: "h4", imageSrc: "http://img.b2bpic.net/free-photo/elegant-couple-draws-art-studio_1157-30462.jpg", imageAlt: "Luxury wedding couple painting live" },
|
||||
{ id: "h5", imageSrc: "http://img.b2bpic.net/free-photo/elegant-wedding-couple-with-romantic-setting_23-2151976668.jpg", imageAlt: "Luxury wedding couple painting live" },
|
||||
{ id: "h6", imageSrc: "http://img.b2bpic.net/free-photo/front-view-couple-looking-mirror-with-feather_23-2148395951.jpg", imageAlt: "Luxury wedding couple painting live" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="brand" data-section="brand">
|
||||
<TextAbout
|
||||
useInvertedBackground={false}
|
||||
title="More Than Art — A Timeless Wedding Experience."
|
||||
buttons={[{ text: "Our Philosophy", href: "/portfolio" }]}
|
||||
/>
|
||||
</div>
|
||||
<div id="experience" data-section="experience">
|
||||
<FeatureCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="bento-grid"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{ title: "Pre-Ceremony Sketch", description: "Laying the foundation for your story.", imageSrc: "http://img.b2bpic.net/free-photo/dreamy-picture-kissing-couple-dressed-30-s-style_8353-7458.jpg" },
|
||||
{ title: "Live Painting", description: "Capturing the emotion in real-time.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-girl-painting-canvas_23-2148002531.jpg" },
|
||||
{ title: "Heirloom Delivery", description: "Final reveal and packaging.", imageSrc: "http://img.b2bpic.net/free-photo/look-from-bouquet-pinks-standing-rays-daylight_8353-625.jpg" },
|
||||
]}
|
||||
title="Signature Process"
|
||||
description="Artistry perfected through every stage."
|
||||
/>
|
||||
</div>
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Frequently Asked Questions"
|
||||
description="Everything you need to know about commissioning a live wedding painting."
|
||||
mediaAnimation="slide-up"
|
||||
faqsAnimation="opacity"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/woman-with-pink-hair-violet-robe-keds-stands-before-blue-sky_8353-1422.jpg"
|
||||
faqs={[
|
||||
{ id: "faq-1", title: "How long does the painting take?", content: "Typically, the painting is completed during the wedding reception, providing guests with a beautiful view of the creation process." },
|
||||
{ id: "faq-2", title: "Do you travel for destination weddings?", content: "Yes, our artists are available for destination weddings across the globe to capture your special day." },
|
||||
{ id: "faq-3", title: "Can I request specific details?", content: "Absolutely. We work closely with you beforehand to ensure specific family members or details are included in your bespoke artwork." },
|
||||
{ id: "faq-4", title: "What medium do you use?", content: "We primarily use premium oils or acrylics to ensure a lasting, high-end fine art finish for your heirloom piece." },
|
||||
{ id: "faq-5", title: "How do we receive the painting?", content: "The painting is carefully packed and delivered post-wedding, ensuring it arrives in perfect, gallery-ready condition." },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Inquiry"
|
||||
title="Ready to immortalize your wedding day?"
|
||||
description="We are currently accepting bookings for the 2025-2026 wedding season. Reach out to check our availability."
|
||||
buttons={[{ text: "Check Availability", href: "/services" }]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard logoText="Live Indian Painter" copyrightText="© 2025 | Live Indian Painter" />
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
@@ -6,8 +6,9 @@ import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwent
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import { ArrowRight } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function PortfolioPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
@@ -22,91 +23,45 @@ export default function LandingPage() {
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Portfolio",
|
||||
id: "/portfolio",
|
||||
},
|
||||
{
|
||||
name: "Artists",
|
||||
id: "/artists",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Workshop",
|
||||
id: "/workshop",
|
||||
},
|
||||
]}
|
||||
brandName="Live Indian Painter"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureCardTwentySix
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Our Curated Portfolio"
|
||||
description="A collection of cinematic memories captured live."
|
||||
features={[
|
||||
{
|
||||
title: "Royal Rajasthan",
|
||||
description: "Classic grandeur and vibrant colors.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-bride-posing-beach-sea-sunset_158538-8439.jpg",
|
||||
buttonIcon: "ArrowRight",
|
||||
},
|
||||
{
|
||||
title: "Modern Mumbai",
|
||||
description: "Sleek and contemporary urban weddings.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/warm-couple-walking-beach-sunset-man-woman-casual-clothes-running-along-water-dusk-love-family-nature-concept_74855-22791.jpg",
|
||||
buttonIcon: "ArrowRight",
|
||||
},
|
||||
{
|
||||
title: "Beachfront Bliss",
|
||||
description: "Romantic seaside ceremonies.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/picture-beautiful-couple-posing-with-blue-smoke-bomb-beach_181624-31837.jpg",
|
||||
buttonIcon: "ArrowRight",
|
||||
},
|
||||
{
|
||||
title: "Classic Heritage",
|
||||
description: "Traditional elegance preserved.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elegant-couple-love-outdoor_624325-581.jpg",
|
||||
buttonIcon: "ArrowRight",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="socialProof" data-section="socialProof">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Featured By"
|
||||
description="Recognized in the wedding industry's top publications."
|
||||
names={[
|
||||
"Vogue Weddings",
|
||||
"Harper's Bazaar Bride",
|
||||
"The Knot",
|
||||
"WeddingSutra",
|
||||
"WedMeGood",
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Live Indian Painter"
|
||||
copyrightText="© 2025 | Live Indian Painter"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Portfolio", id: "/portfolio" },
|
||||
{ name: "Artists", id: "/artists" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Workshop", id: "/workshop" },
|
||||
]}
|
||||
brandName="Live Indian Painter"
|
||||
button={{ text: "Book Now", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureCardTwentySix
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Our Curated Portfolio"
|
||||
description="A collection of cinematic memories captured live."
|
||||
features={[
|
||||
{ title: "Royal Rajasthan", description: "Classic grandeur and vibrant colors.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-bride-posing-beach-sea-sunset_158538-8439.jpg", buttonIcon: ArrowRight },
|
||||
{ title: "Modern Mumbai", description: "Sleek and contemporary urban weddings.", imageSrc: "http://img.b2bpic.net/free-photo/warm-couple-walking-beach-sunset-man-woman-casual-clothes-running-along-water-dusk-love-family-nature-concept_74855-22791.jpg", buttonIcon: ArrowRight },
|
||||
{ title: "Beachfront Bliss", description: "Romantic seaside ceremonies.", imageSrc: "http://img.b2bpic.net/free-photo/picture-beautiful-couple-posing-with-blue-smoke-bomb-beach_181624-31837.jpg", buttonIcon: ArrowRight },
|
||||
{ title: "Classic Heritage", description: "Traditional elegance preserved.", imageSrc: "http://img.b2bpic.net/free-photo/elegant-couple-love-outdoor_624325-581.jpg", buttonIcon: ArrowRight },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="socialProof" data-section="socialProof">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Featured By"
|
||||
description="Recognized in the wedding industry's top publications."
|
||||
names={["Vogue Weddings", "Harper's Bazaar Bride", "The Knot", "WeddingSutra", "WedMeGood"]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard logoText="Live Indian Painter" copyrightText="© 2025 | Live Indian Painter" />
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
@@ -6,8 +6,9 @@ import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwent
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import { ArrowRight } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ServicesPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
@@ -22,91 +23,45 @@ export default function LandingPage() {
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Portfolio",
|
||||
id: "/portfolio",
|
||||
},
|
||||
{
|
||||
name: "Artists",
|
||||
id: "/artists",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Workshop",
|
||||
id: "/workshop",
|
||||
},
|
||||
]}
|
||||
brandName="Live Indian Painter"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureCardTwentySix
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Service Offerings"
|
||||
description="Tailored packages for your unique luxury wedding."
|
||||
features={[
|
||||
{
|
||||
title: "Live Ceremony Painting",
|
||||
description: "The quintessential live experience.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/love-story-adult-couple-art-studio-they-paint-pictures-laugh-kiss-each-other-their-emotions-feelings-love_1157-46347.jpg",
|
||||
buttonIcon: "ArrowRight",
|
||||
},
|
||||
{
|
||||
title: "Studio Portrait Sessions",
|
||||
description: "Private sittings before or after.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elegant-couple-draws-art-studio_1157-30470.jpg",
|
||||
buttonIcon: "ArrowRight",
|
||||
},
|
||||
{
|
||||
title: "Heirloom Restoration",
|
||||
description: "Reviving past memories.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-beautifully-decorated-scrapbook_23-2149614036.jpg",
|
||||
buttonIcon: "ArrowRight",
|
||||
},
|
||||
{
|
||||
title: "Live Sketch Event",
|
||||
description: "Elegant sketches for guests.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-essential-items-wedding-planner-business_23-2150165034.jpg",
|
||||
buttonIcon: "ArrowRight",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="legal" data-section="legal">
|
||||
<LegalSection
|
||||
layout="section"
|
||||
title="Booking Policy"
|
||||
sections={[
|
||||
{
|
||||
heading: "Reservations",
|
||||
content: {
|
||||
type: "paragraph",
|
||||
text: "A 50% retainer is required to secure your date.",
|
||||
},
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Live Indian Painter"
|
||||
copyrightText="© 2025 | Live Indian Painter"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Portfolio", id: "/portfolio" },
|
||||
{ name: "Artists", id: "/artists" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Workshop", id: "/workshop" },
|
||||
]}
|
||||
brandName="Live Indian Painter"
|
||||
button={{ text: "Inquire", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureCardTwentySix
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Service Offerings"
|
||||
description="Tailored packages for your unique luxury wedding."
|
||||
features={[
|
||||
{ title: "Live Ceremony Painting", description: "The quintessential live experience.", imageSrc: "http://img.b2bpic.net/free-photo/love-story-adult-couple-art-studio-they-paint-pictures-laugh-kiss-each-other-their-emotions-feelings-love_1157-46347.jpg", buttonIcon: ArrowRight },
|
||||
{ title: "Studio Portrait Sessions", description: "Private sittings before or after.", imageSrc: "http://img.b2bpic.net/free-photo/elegant-couple-draws-art-studio_1157-30470.jpg", buttonIcon: ArrowRight },
|
||||
{ title: "Heirloom Restoration", description: "Reviving past memories.", imageSrc: "http://img.b2bpic.net/free-photo/view-beautifully-decorated-scrapbook_23-2149614036.jpg", buttonIcon: ArrowRight },
|
||||
{ title: "Live Sketch Event", description: "Elegant sketches for guests.", imageSrc: "http://img.b2bpic.net/free-photo/view-essential-items-wedding-planner-business_23-2150165034.jpg", buttonIcon: ArrowRight },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="legal" data-section="legal">
|
||||
<LegalSection
|
||||
layout="section"
|
||||
title="Booking Policy"
|
||||
sections={[
|
||||
{ heading: "Reservations", content: "A 50% retainer is required to secure your date." },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard logoText="Live Indian Painter" copyrightText="© 2025 | Live Indian Painter" />
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
@@ -6,8 +6,9 @@ import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import { ArrowRight } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function WorkshopPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
@@ -22,93 +23,46 @@ export default function LandingPage() {
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Portfolio",
|
||||
id: "/portfolio",
|
||||
},
|
||||
{
|
||||
name: "Artists",
|
||||
id: "/artists",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Workshop",
|
||||
id: "/workshop",
|
||||
},
|
||||
]}
|
||||
brandName="Live Indian Painter"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureCardTwentySix
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Masterclass Workshop"
|
||||
description="Learn the secrets of live wedding art."
|
||||
features={[
|
||||
{
|
||||
title: "Color Theory",
|
||||
description: "Mastering the gold palette.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-paint-materials_23-2148017478.jpg",
|
||||
buttonIcon: "ArrowRight",
|
||||
},
|
||||
{
|
||||
title: "Live Techniques",
|
||||
description: "Painting under pressure.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-woman-couple-drinking-coffee-drawing-art-studio_839833-7154.jpg",
|
||||
buttonIcon: "ArrowRight",
|
||||
},
|
||||
{
|
||||
title: "Client Management",
|
||||
description: "Managing expectations.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elegant-couple-draws-art-studio_1157-30461.jpg",
|
||||
buttonIcon: "ArrowRight",
|
||||
},
|
||||
{
|
||||
title: "Business Building",
|
||||
description: "Scaling your brand.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/christmas-decorations-with-cake-frame_181624-24078.jpg",
|
||||
buttonIcon: "ArrowRight",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
tag="Education"
|
||||
title="Reserve your spot"
|
||||
description="Limited seats for the upcoming seasonal masterclass."
|
||||
buttons={[
|
||||
{
|
||||
text: "Register Now",
|
||||
href: "#",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Live Indian Painter"
|
||||
copyrightText="© 2025 | Live Indian Painter"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Portfolio", id: "/portfolio" },
|
||||
{ name: "Artists", id: "/artists" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Workshop", id: "/workshop" },
|
||||
]}
|
||||
brandName="Live Indian Painter"
|
||||
button={{ text: "Register", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureCardTwentySix
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Masterclass Workshop"
|
||||
description="Learn the secrets of live wedding art."
|
||||
features={[
|
||||
{ title: "Color Theory", description: "Mastering the gold palette.", imageSrc: "http://img.b2bpic.net/free-photo/still-life-paint-materials_23-2148017478.jpg", buttonIcon: ArrowRight },
|
||||
{ title: "Live Techniques", description: "Painting under pressure.", imageSrc: "http://img.b2bpic.net/free-photo/man-woman-couple-drinking-coffee-drawing-art-studio_839833-7154.jpg", buttonIcon: ArrowRight },
|
||||
{ title: "Client Management", description: "Managing expectations.", imageSrc: "http://img.b2bpic.net/free-photo/elegant-couple-draws-art-studio_1157-30461.jpg", buttonIcon: ArrowRight },
|
||||
{ title: "Business Building", description: "Scaling your brand.", imageSrc: "http://img.b2bpic.net/free-photo/christmas-decorations-with-cake-frame_181624-24078.jpg", buttonIcon: ArrowRight },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Education"
|
||||
title="Reserve your spot"
|
||||
description="Limited seats for the upcoming seasonal masterclass."
|
||||
buttons={[{ text: "Register Now", href: "#" }]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard logoText="Live Indian Painter" copyrightText="© 2025 | Live Indian Painter" />
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user