diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index 71bc64f..e6e3c1f 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -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 (
@@ -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" }
]}
/>
@@ -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" }
]}
/>
@@ -107,37 +69,10 @@ export default function LandingPage() {
);
-}
+}
\ No newline at end of file
diff --git a/src/app/appointments/page.tsx b/src/app/appointments/page.tsx
index e48a109..bc1819e 100644
--- a/src/app/appointments/page.tsx
+++ b/src/app/appointments/page.tsx
@@ -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 (
@@ -54,16 +40,9 @@ export default function LandingPage() {
@@ -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." } }
]}
/>
@@ -87,37 +60,10 @@ export default function LandingPage() {
);
-}
+}
\ No newline at end of file
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index b7230fe..7410f6f 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -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 (
@@ -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" }
]}
/>
@@ -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." } }
]}
/>
@@ -94,37 +64,10 @@ export default function LandingPage() {
);
-}
+}
\ No newline at end of file
diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx
index 28143c2..ad9ce45 100644
--- a/src/app/gallery/page.tsx
+++ b/src/app/gallery/page.tsx
@@ -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 (
@@ -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" }
]}
/>
@@ -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+" }
]}
/>
@@ -103,37 +69,10 @@ export default function LandingPage() {
);
-}
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index a9b4b79..a274bee 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -29,132 +29,35 @@ export default function LandingPage() {
@@ -162,12 +65,7 @@ export default function LandingPage() {
@@ -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" }] }
]}
/>
@@ -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" }
]}
/>
@@ -279,37 +117,10 @@ export default function LandingPage() {
);
-}
+}
\ No newline at end of file