Update src/app/services/page.tsx
This commit is contained in:
@@ -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>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user