Update src/app/services/page.tsx

This commit is contained in:
2026-05-23 03:12:28 +00:00
parent 735db58850
commit 965cfc47a8

View File

@@ -25,26 +25,11 @@ export default function LandingPage() {
<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",
},
{ name: "Home", id: "/" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Artists", id: "/artists" },
{ name: "Services", id: "/services" },
{ name: "Workshop", id: "/workshop" }
]}
brandName="Live Indian Painter"
/>
@@ -59,38 +44,13 @@ export default function LandingPage() {
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: "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",
],
},
id: "p2", badge: "Premiere", price: "Custom", subtitle: "Premium luxury service", buttons: [{ text: "Inquire", href: "/services" }],
features: ["On-site painting", "Studio finishing", "Framing included"]
}
]}
/>
</div>
@@ -101,12 +61,8 @@ export default function LandingPage() {
title="Terms of Service"
sections={[
{
heading: "Booking Policy",
content: {
type: "paragraph",
text: "A deposit is required to secure your date.",
},
},
heading: "Booking Policy", content: { text: "A deposit is required to secure your date." }
}
]}
/>
</div>
@@ -114,30 +70,8 @@ export default function LandingPage() {
<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",
},
],
},
{ items: [{ label: "Portfolio", href: "/portfolio" }, { label: "Our Artists", href: "/artists" }] },
{ items: [{ label: "Services", href: "/services" }, { label: "Book Now", href: "/services" }] }
]}
logoText="Live Indian Painter"
/>
@@ -145,4 +79,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}