Files
c83e8854-87ca-4431-8dff-182…/src/app/workshop/page.tsx

96 lines
3.8 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import { Palette, Users } from "lucide-react";
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="floatingGradient"
cardStyle="subtle-shadow"
primaryButtonStyle="flat"
secondaryButtonStyle="glass"
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="feature" data-section="feature">
<FeatureCardTwentyFive
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Master Your Craft"
description="Learn the art of live painting from our mentors."
features={[
{
title: "Technique", description: "Brushwork and color theory for events.", icon: Palette,
mediaItems: [
{ imageSrc: "http://img.b2bpic.net/free-photo/woman-painting-with-watercolor-studio_23-2148014058.jpg" },
{ imageSrc: "http://img.b2bpic.net/free-photo/jar-with-brushes-near-black-wall_23-2147801983.jpg" }
]
},
{
title: "Live Setup", description: "Managing crowd interaction while painting.", icon: Users,
mediaItems: [
{ imageSrc: "http://img.b2bpic.net/free-photo/view-paint-brushes-display-with-brush-strokes-paint_23-2150351773.jpg" },
{ imageSrc: "http://img.b2bpic.net/free-photo/process-making-handmade-gingerbread-decor-design_169016-20549.jpg" }
]
}
]}
/>
</div>
<div id="testimonial" data-section="testimonial">
<TestimonialCardSixteen
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Student Stories"
description="From amateur to wedding artist."
kpiItems={[
{ value: "100+", label: "Students Trained" },
{ value: "95%", label: "Success Rate" },
{ value: "5+", label: "Years Experience" }
]}
testimonials={[
{ id: "t1", name: "Meera S.", role: "Workshop Student", company: "Mumbai", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-african-american-woman-drawing-canvas-workshop-space-close-up-art-pencils-table-used-by-black-young-artist-sitting-wheelchair-creating-masterpiece_482257-33993.jpg" },
{ id: "t2", name: "Rahul V.", role: "Workshop Student", company: "Delhi", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/man-white-shirt-works-with-cement_1157-37378.jpg" }
]}
/>
</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>
);
}