Merge version_1 into main #4

Merged
bender merged 1 commits from version_1 into main 2026-05-23 03:13:27 +00:00

View File

@@ -7,7 +7,7 @@ import LegalSection from '@/components/legal/LegalSection';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
export default function LandingPage() {
export default function ServicesPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
@@ -22,60 +22,60 @@ export default function LandingPage() {
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
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="nav" data-section="nav">
<NavbarStyleFullscreen
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="pricing" data-section="pricing">
<PricingCardEight
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Investment in Art"
description="Choose the perfect package for your wedding."
plans={[
{
id: "p1", badge: "Essential", price: "Custom", subtitle: "Live event coverage", buttons: [{ text: "Book", href: "/services" }],
features: ["On-site painting", "High-res scan"]
},
{
id: "p2", badge: "Premiere", price: "Custom", subtitle: "Premium luxury service", buttons: [{ text: "Inquire", href: "/services" }],
features: ["On-site painting", "Studio finishing", "Framing included"]
}
]}
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardEight
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Investment in Art"
description="Choose the perfect package for your wedding."
plans={[
{
id: "p1", badge: "Essential", price: "Custom", subtitle: "Live event coverage", buttons: [{ text: "Book", href: "/services" }],
features: ["On-site painting", "High-res scan"]
},
{
id: "p2", badge: "Premiere", price: "Custom", subtitle: "Premium luxury service", buttons: [{ text: "Inquire", href: "/services" }],
features: ["On-site painting", "Studio finishing", "Framing included"]
}
]}
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="section"
title="Terms of Service"
sections={[
{
heading: "Booking Policy", content: { type: "paragraph", text: "A deposit is required to secure your date." }
}
]}
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="section"
title="Terms of Service"
sections={[
{
heading: "Booking Policy", content: { text: "A deposit is required to secure your date." }
}
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Portfolio", href: "/portfolio" }, { label: "Our Artists", href: "/artists" }] },
{ items: [{ label: "Services", href: "/services" }, { label: "Book Now", href: "/services" }] }
]}
logoText="Live Indian Painter"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Portfolio", href: "/portfolio" }, { label: "Our Artists", href: "/artists" }] },
{ items: [{ label: "Services", href: "/services" }, { label: "Book Now", href: "/services" }] }
]}
logoText="Live Indian Painter"
/>
</div>
</ReactLenis>
</ThemeProvider>
);