Merge version_1 into main #2
@@ -7,7 +7,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
|
||||
import TeamCardSix from '@/components/sections/team/TeamCardSix';
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
@@ -25,28 +25,14 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Book Now",
|
||||
id: "/appointments",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Book Now", id: "/appointments" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Femme Fatale Shop No. 27"
|
||||
button={{ text: "Book Now", href: "/appointments" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -59,18 +45,8 @@ export default function LandingPage() {
|
||||
title="Our Expert Tailors"
|
||||
description="Meet the talented team behind every beautiful creation at Shop No. 27."
|
||||
members={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Sonia Reddy",
|
||||
role: "Head Designer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-posing-cv_23-2149927554.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Rajesh Kumar",
|
||||
role: "Master Tailor",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blond-girl-blue-suit-posing-near-artistic-wall_613910-14222.jpg",
|
||||
},
|
||||
{ id: "t1", name: "Sonia Reddy", role: "Head Designer", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-posing-cv_23-2149927554.jpg" },
|
||||
{ id: "t2", name: "Rajesh Kumar", role: "Master Tailor", imageSrc: "http://img.b2bpic.net/free-photo/blond-girl-blue-suit-posing-near-artistic-wall_613910-14222.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -84,22 +60,8 @@ export default function LandingPage() {
|
||||
title="Customer Stories"
|
||||
description="Genuine experiences from our lovely patrons."
|
||||
testimonials={[
|
||||
{
|
||||
id: "s1",
|
||||
name: "Pooja Hegde",
|
||||
role: "Client",
|
||||
company: "Regular",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/retro-image-with-woman-long-white-dress_613910-10985.jpg",
|
||||
},
|
||||
{
|
||||
id: "s2",
|
||||
name: "Shweta V.",
|
||||
role: "Client",
|
||||
company: "Bridal",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-classy-suit-studio_1303-13816.jpg",
|
||||
},
|
||||
{ id: "s1", name: "Pooja Hegde", role: "Client", company: "Regular", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/retro-image-with-woman-long-white-dress_613910-10985.jpg" },
|
||||
{ id: "s2", name: "Shweta V.", role: "Client", company: "Bridal", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/business-woman-classy-suit-studio_1303-13816.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -107,37 +69,10 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="Femme Fatale Shop No. 27"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Appointments",
|
||||
href: "/appointments",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Follow Us",
|
||||
items: [
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "WhatsApp",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={[{ title: "Quick Links", items: [{ label: "About", href: "/about" }, { label: "Appointments", href: "/appointments" }] }, { title: "Follow Us", items: [{ label: "Instagram", href: "#" }, { label: "WhatsApp", href: "#" }] }]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -7,7 +7,7 @@ import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestim
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function AppointmentsPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
@@ -25,28 +25,14 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Book Now",
|
||||
id: "/appointments",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Book Now", id: "/appointments" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Femme Fatale Shop No. 27"
|
||||
button={{ text: "Book Now", href: "/appointments" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -54,16 +40,9 @@ export default function LandingPage() {
|
||||
<HeroOverlayTestimonial
|
||||
title="Schedule Your Visit"
|
||||
description="Book a private consultation for bespoke tailoring."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-thai-woman-wearing-thai-dress-happy-smile_1150-16107.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-thai-woman-wearing-thai-dress-happy-smile_1150-16107.jpg"
|
||||
testimonials={[
|
||||
{
|
||||
name: "Anita B.",
|
||||
handle: "@anita",
|
||||
testimonial: "Super easy booking experience!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-thai-woman-wearing-thai-dress-happy-smile_1150-16107.jpg?_wi=2",
|
||||
imageAlt: "Beautiful Thai woman wearing a Thai dress and a happy smile.",
|
||||
},
|
||||
{ name: "Anita B.", handle: "@anita", testimonial: "Super easy booking experience!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/beautiful-thai-woman-wearing-thai-dress-happy-smile_1150-16107.jpg", imageAlt: "Beautiful Thai woman wearing a Thai dress and a happy smile." }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -73,13 +52,7 @@ export default function LandingPage() {
|
||||
layout="section"
|
||||
title="Booking Policy"
|
||||
sections={[
|
||||
{
|
||||
heading: "Cancellations",
|
||||
content: {
|
||||
type: "paragraph",
|
||||
text: "Please notify us 24 hours in advance for any appointment changes.",
|
||||
},
|
||||
},
|
||||
{ heading: "Cancellations", content: { text: "Please notify us 24 hours in advance for any appointment changes." } }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -87,37 +60,10 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="Femme Fatale Shop No. 27"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Appointments",
|
||||
href: "/appointments",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Follow Us",
|
||||
items: [
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "WhatsApp",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={[{ title: "Quick Links", items: [{ label: "About", href: "/about" }, { label: "Appointments", href: "/appointments" }] }, { title: "Follow Us", items: [{ label: "Instagram", href: "#" }, { label: "WhatsApp", href: "#" }] }]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -8,7 +8,7 @@ import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import { Mail, Phone } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
@@ -26,28 +26,14 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Book Now",
|
||||
id: "/appointments",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Book Now", id: "/appointments" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Femme Fatale Shop No. 27"
|
||||
button={{ text: "Book Now", href: "/appointments" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -59,18 +45,8 @@ export default function LandingPage() {
|
||||
title="Reach Out to Us"
|
||||
description="We are here to assist with your bespoke fashion needs."
|
||||
metrics={[
|
||||
{
|
||||
id: "m6",
|
||||
icon: Phone,
|
||||
title: "Call Us",
|
||||
value: "+91 987654321",
|
||||
},
|
||||
{
|
||||
id: "m7",
|
||||
icon: Mail,
|
||||
title: "Email Us",
|
||||
value: "hello@shop27.com",
|
||||
},
|
||||
{ id: "m6", icon: Phone, title: "Call Us", value: "+91 987654321" },
|
||||
{ id: "m7", icon: Mail, title: "Email Us", value: "hello@shop27.com" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -80,13 +56,7 @@ export default function LandingPage() {
|
||||
layout="section"
|
||||
title="Store Location"
|
||||
sections={[
|
||||
{
|
||||
heading: "Address",
|
||||
content: {
|
||||
type: "paragraph",
|
||||
text: "Visit us at Shop No. 27, Main Market Area, Visakhapatnam.",
|
||||
},
|
||||
},
|
||||
{ heading: "Address", content: { text: "Visit us at Shop No. 27, Main Market Area, Visakhapatnam." } }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -94,37 +64,10 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="Femme Fatale Shop No. 27"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Appointments",
|
||||
href: "/appointments",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Follow Us",
|
||||
items: [
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "WhatsApp",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={[{ title: "Quick Links", items: [{ label: "About", href: "/about" }, { label: "Appointments", href: "/appointments" }] }, { title: "Follow Us", items: [{ label: "Instagram", href: "#" }, { label: "WhatsApp", href: "#" }] }]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -8,7 +8,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import { Scissors, Sparkles } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function GalleryPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
@@ -26,28 +26,14 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Book Now",
|
||||
id: "/appointments",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Book Now", id: "/appointments" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Femme Fatale Shop No. 27"
|
||||
button={{ text: "Book Now", href: "/appointments" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -60,18 +46,8 @@ export default function LandingPage() {
|
||||
title="Our Collection"
|
||||
description="Hand-picked designs for every occasion."
|
||||
products={[
|
||||
{
|
||||
id: "c1",
|
||||
name: "Saree Embroidery",
|
||||
price: "Custom",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-thai-woman-wearing-thai-dress-happy-smile_1150-16043.jpg",
|
||||
},
|
||||
{
|
||||
id: "c2",
|
||||
name: "Modern Ethnic",
|
||||
price: "Custom",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-wearing-traditional-sari-garment_23-2149565122.jpg",
|
||||
},
|
||||
{ id: "c1", name: "Saree Embroidery", price: "Custom", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-thai-woman-wearing-thai-dress-happy-smile_1150-16043.jpg" },
|
||||
{ id: "c2", name: "Modern Ethnic", price: "Custom", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-wearing-traditional-sari-garment_23-2149565122.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -84,18 +60,8 @@ export default function LandingPage() {
|
||||
title="Crafting Quality"
|
||||
description="Details that make the difference."
|
||||
metrics={[
|
||||
{
|
||||
id: "m4",
|
||||
icon: Scissors,
|
||||
title: "Projects",
|
||||
value: "500+",
|
||||
},
|
||||
{
|
||||
id: "m5",
|
||||
icon: Sparkles,
|
||||
title: "Designs",
|
||||
value: "100+",
|
||||
},
|
||||
{ id: "m4", icon: Scissors, title: "Projects", value: "500+" },
|
||||
{ id: "m5", icon: Sparkles, title: "Designs", value: "100+" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -103,37 +69,10 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="Femme Fatale Shop No. 27"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Appointments",
|
||||
href: "/appointments",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Follow Us",
|
||||
items: [
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "WhatsApp",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={[{ title: "Quick Links", items: [{ label: "About", href: "/about" }, { label: "Appointments", href: "/appointments" }] }, { title: "Follow Us", items: [{ label: "Instagram", href: "#" }, { label: "WhatsApp", href: "#" }] }]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
241
src/app/page.tsx
241
src/app/page.tsx
@@ -29,132 +29,35 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Book Now",
|
||||
id: "/appointments",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Book Now", id: "/appointments" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Femme Fatale Shop No. 27"
|
||||
button={{ text: "Book Now", href: "/appointments" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardTestimonial
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
title="Femme Fatale Boutique – Shop No. 27"
|
||||
description="Trusted ladies fashion boutique and tailoring excellence since 2014 in Visakhapatnam. Experience high-end designer wear and bespoke stitching services."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Priya Reddy",
|
||||
handle: "@priya_reddy",
|
||||
testimonial: "The maggam work at Shop No. 27 is truly unparalleled. Best boutique experience!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-women-wearing-sari_23-2149461714.jpg",
|
||||
},
|
||||
{
|
||||
name: "Ananya Rao",
|
||||
handle: "@ananyarao",
|
||||
testimonial: "Incredible fit and stunning designs. They truly know their craft.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-with-sari_23-2149461703.jpg",
|
||||
},
|
||||
{
|
||||
name: "Sita Devi",
|
||||
handle: "@sita_devi",
|
||||
testimonial: "My bridal lehenga was perfect. Absolutely worth every penny.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-beautiful-girls-shopping-clothes-shop_1301-6771.jpg",
|
||||
},
|
||||
{
|
||||
name: "Meera Nair",
|
||||
handle: "@meera_nair",
|
||||
testimonial: "Excellent service and timely delivery. Highly recommended for custom work.",
|
||||
rating: 4,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-shopping-bags-beautiful-dress_1303-17547.jpg",
|
||||
},
|
||||
{
|
||||
name: "Kavita S.",
|
||||
handle: "@kavita_s",
|
||||
testimonial: "Shop No. 27 has transformed my wardrobe with their elegant designs.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/shopping-woman_1098-16863.jpg",
|
||||
},
|
||||
{ name: "Priya Reddy", handle: "@priya_reddy", testimonial: "The maggam work at Shop No. 27 is truly unparalleled. Best boutique experience!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/side-view-women-wearing-sari_23-2149461714.jpg" },
|
||||
{ name: "Ananya Rao", handle: "@ananyarao", testimonial: "Incredible fit and stunning designs. They truly know their craft.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-with-sari_23-2149461703.jpg" },
|
||||
{ name: "Sita Devi", handle: "@sita_devi", testimonial: "My bridal lehenga was perfect. Absolutely worth every penny.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/two-beautiful-girls-shopping-clothes-shop_1301-6771.jpg" },
|
||||
{ name: "Meera Nair", handle: "@meera_nair", testimonial: "Excellent service and timely delivery. Highly recommended for custom work.", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-shopping-bags-beautiful-dress_1303-17547.jpg" },
|
||||
{ name: "Kavita S.", handle: "@kavita_s", testimonial: "Shop No. 27 has transformed my wardrobe with their elegant designs.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/shopping-woman_1098-16863.jpg" }
|
||||
]}
|
||||
tag="Trusted Since 2014"
|
||||
buttons={[
|
||||
{
|
||||
text: "Book Appointment",
|
||||
href: "/appointments",
|
||||
},
|
||||
{
|
||||
text: "Explore Collections",
|
||||
href: "/gallery",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Book Appointment", href: "/appointments" }, { text: "Explore Collections", href: "/gallery" }]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EDAac56Hqzmkg6Ycae5YteloTs/uploaded-1779702889753-nbxrf2tw.jpg"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-brunette-woman-with-shopping-bags_1098-2361.jpg",
|
||||
alt: "User avatar",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-indian-woman-wearing-sari_23-2149400919.jpg",
|
||||
alt: "User avatar",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-indian-woman-wearing-sari_23-2149400860.jpg",
|
||||
alt: "User avatar",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-woman-posing-while-wearing-traditional-sari-garment_23-2149565172.jpg",
|
||||
alt: "User avatar",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-woman-posing-while-wearing-traditional-sari-garment_23-2149565173.jpg",
|
||||
alt: "User avatar",
|
||||
},
|
||||
]}
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Bespoke Tailoring",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Designer Blouses",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Bridal Wear",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Hand Embroidery",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Luxury Fabrics",
|
||||
},
|
||||
]}
|
||||
avatars={[{ src: "http://img.b2bpic.net/free-photo/close-up-brunette-woman-with-shopping-bags_1098-2361.jpg", alt: "User avatar" }, { src: "http://img.b2bpic.net/free-photo/young-indian-woman-wearing-sari_23-2149400919.jpg", alt: "User avatar" }, { src: "http://img.b2bpic.net/free-photo/young-indian-woman-wearing-sari_23-2149400860.jpg", alt: "User avatar" }, { src: "http://img.b2bpic.net/free-photo/young-woman-posing-while-wearing-traditional-sari-garment_23-2149565172.jpg", alt: "User avatar" }, { src: "http://img.b2bpic.net/free-photo/young-woman-posing-while-wearing-traditional-sari-garment_23-2149565173.jpg", alt: "User avatar" }]}
|
||||
marqueeItems={[{ type: "text", text: "Bespoke Tailoring" }, { type: "text", text: "Designer Blouses" }, { type: "text", text: "Bridal Wear" }, { type: "text", text: "Hand Embroidery" }, { type: "text", text: "Luxury Fabrics" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -162,12 +65,7 @@ export default function LandingPage() {
|
||||
<TextAbout
|
||||
useInvertedBackground={true}
|
||||
title="Elegant Tailoring from Shop No. 27"
|
||||
buttons={[
|
||||
{
|
||||
text: "Learn More",
|
||||
href: "/about",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Learn More", href: "/about" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -178,24 +76,9 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Bridal Maggam Blouse",
|
||||
price: "Custom",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EDAac56Hqzmkg6Ycae5YteloTs/uploaded-1779702889753-qz5oq9r6.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Custom Designer Salwar",
|
||||
price: "Custom",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EDAac56Hqzmkg6Ycae5YteloTs/uploaded-1779702889753-mswla8mt.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Hand-stitched Lehenga",
|
||||
price: "Custom",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EDAac56Hqzmkg6Ycae5YteloTs/uploaded-1779702889753-gxdgm9q5.jpg",
|
||||
},
|
||||
{ id: "p1", name: "Bridal Maggam Blouse", price: "Custom", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EDAac56Hqzmkg6Ycae5YteloTs/uploaded-1779702889753-qz5oq9r6.jpg" },
|
||||
{ id: "p2", name: "Custom Designer Salwar", price: "Custom", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EDAac56Hqzmkg6Ycae5YteloTs/uploaded-1779702889753-mswla8mt.jpg" },
|
||||
{ id: "p3", name: "Hand-stitched Lehenga", price: "Custom", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EDAac56Hqzmkg6Ycae5YteloTs/uploaded-1779702889753-gxdgm9q5.jpg" }
|
||||
]}
|
||||
title="Trending Designs"
|
||||
description="Exquisite bridal wear and custom stitching from our boutique."
|
||||
@@ -210,38 +93,8 @@ export default function LandingPage() {
|
||||
title="Pricing Options"
|
||||
description="Choose the best service level for your needs."
|
||||
plans={[
|
||||
{
|
||||
id: "basic",
|
||||
name: "Basic Alterations",
|
||||
price: "Starting at $20",
|
||||
features: [
|
||||
"Hemming",
|
||||
"Simple resizing",
|
||||
"Quick turnaround",
|
||||
],
|
||||
buttons: [
|
||||
{
|
||||
text: "Select Plan",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "bespoke",
|
||||
name: "Bespoke Design",
|
||||
price: "Upon Request",
|
||||
features: [
|
||||
"Personal consultations",
|
||||
"Custom fabric sourcing",
|
||||
"Intricate handwork",
|
||||
],
|
||||
buttons: [
|
||||
{
|
||||
text: "Select Plan",
|
||||
href: "/appointments",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ id: "basic", name: "Basic Alterations", price: "Starting at $20", features: ["Hemming", "Simple resizing", "Quick turnaround"], buttons: [{ text: "Select Plan", href: "/contact" }] },
|
||||
{ id: "bespoke", name: "Bespoke Design", price: "Upon Request", features: ["Personal consultations", "Custom fabric sourcing", "Intricate handwork"], buttons: [{ text: "Select Plan", href: "/appointments" }] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -254,24 +107,9 @@ export default function LandingPage() {
|
||||
title="Why Our Clients Love Us"
|
||||
description="Decades of passion and precision in every stitch."
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
icon: Award,
|
||||
title: "Awards Won",
|
||||
value: "12+",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
icon: Users,
|
||||
title: "Happy Clients",
|
||||
value: "2,500+",
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
icon: MapPin,
|
||||
title: "Local Legacy",
|
||||
value: "10 Years",
|
||||
},
|
||||
{ id: "m1", icon: Award, title: "Awards Won", value: "12+" },
|
||||
{ id: "m2", icon: Users, title: "Happy Clients", value: "2,500+" },
|
||||
{ id: "m3", icon: MapPin, title: "Local Legacy", value: "10 Years" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -279,37 +117,10 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="Femme Fatale Shop No. 27"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Appointments",
|
||||
href: "/appointments",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Follow Us",
|
||||
items: [
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "WhatsApp",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={[{ title: "Quick Links", items: [{ label: "About", href: "/about" }, { label: "Appointments", href: "/appointments" }] }, { title: "Follow Us", items: [{ label: "Instagram", href: "#" }, { label: "WhatsApp", href: "#" }] }]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user