From 118d6591e62fc8255c92751d6d2c843e7dafd68f Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 09:14:41 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 99 ++++++++++-------------------------------- 1 file changed, 22 insertions(+), 77 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 981c2a8..781d917 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -9,17 +9,16 @@ import TestimonialCardTwelve from "@/components/sections/testimonial/Testimonial import FooterMedia from "@/components/sections/footer/FooterMedia"; const navItems = [ - { name: "Home", id: "home" }, - { name: "About", id: "about" }, - { name: "Services", id: "services" }, - { name: "Reviews", id: "reviews" }, - { name: "Contact", id: "contact" }, + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Services", id: "/services" }, + { name: "Reviews", id: "/reviews" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ { - title: "Studio", - items: [ + title: "Studio", items: [ { label: "Home", href: "/" }, { label: "About Us", href: "/about" }, { label: "Services", href: "/services" }, @@ -27,20 +26,16 @@ const footerColumns = [ ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "Phone: 099950 23841", href: "tel:+919995023841" }, { label: "Book a Session", href: "/contact" }, { label: "Inquiries", href: "/contact" }, { - label: "Location", - href: "https://maps.google.com/?q=Morattammal+Building+Vezhupoor+Rd+Thamarassery+Kerala", - }, + label: "Location", href: "https://maps.google.com/?q=Morattammal+Building+Vezhupoor+Rd+Thamarassery+Kerala"}, ], }, { - title: "Follow Us", - items: [ + title: "Follow Us", items: [ { label: "Instagram", href: "https://instagram.com/d5studio" }, { label: "Facebook", href: "https://facebook.com/d5studio" }, { label: "LinkedIn", href: "https://linkedin.com/company/d5studio" }, @@ -48,8 +43,7 @@ const footerColumns = [ ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Booking Terms", href: "#" }, @@ -77,9 +71,7 @@ export default function AboutPage() { navItems={navItems} brandName="D5 Studio" button={{ - text: "Book a Session", - href: "/contact", - }} + text: "Book a Session", href: "/contact"}} /> @@ -87,15 +79,10 @@ export default function AboutPage() { Date: Sat, 21 Mar 2026 09:14:42 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 54 ++++++++++++---------------------------- 1 file changed, 16 insertions(+), 38 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 20b94db..0aa256d 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -8,17 +8,16 @@ import FooterMedia from "@/components/sections/footer/FooterMedia"; export default function ContactPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "About", id: "about" }, - { name: "Services", id: "services" }, - { name: "Reviews", id: "reviews" }, - { name: "Contact", id: "contact" }, + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Services", id: "/services" }, + { name: "Reviews", id: "/reviews" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ { - title: "Studio", - items: [ + title: "Studio", items: [ { label: "Home", href: "/" }, { label: "About Us", href: "/about" }, { label: "Services", href: "/services" }, @@ -26,20 +25,16 @@ export default function ContactPage() { ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "Phone: 099950 23841", href: "tel:+919995023841" }, { label: "Book a Session", href: "/contact" }, { label: "Inquiries", href: "/contact" }, { - label: "Location", - href: "https://maps.google.com/?q=Morattammal+Building+Vezhupoor+Rd+Thamarassery+Kerala", - }, + label: "Location", href: "https://maps.google.com/?q=Morattammal+Building+Vezhupoor+Rd+Thamarassery+Kerala"}, ], }, { - title: "Follow Us", - items: [ + title: "Follow Us", items: [ { label: "Instagram", href: "https://instagram.com/d5studio" }, { label: "Facebook", href: "https://facebook.com/d5studio" }, { label: "LinkedIn", href: "https://linkedin.com/company/d5studio" }, @@ -47,8 +42,7 @@ export default function ContactPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Booking Terms", href: "#" }, @@ -75,9 +69,7 @@ export default function ContactPage() { brandName="D5 Studio" navItems={navItems} button={{ - text: "Book a Session", - href: "/contact", - }} + text: "Book a Session", href: "/contact"}} /> @@ -92,34 +84,20 @@ export default function ContactPage() { useInvertedBackground={false} inputs={[ { - name: "name", - type: "text", - placeholder: "Your Full Name", - required: true, + name: "name", type: "text", placeholder: "Your Full Name", required: true, }, { - name: "email", - type: "email", - placeholder: "your@email.com", - required: true, + name: "email", type: "email", placeholder: "your@email.com", required: true, }, { - name: "phone", - type: "tel", - placeholder: "+91 99950 23841", - required: true, + name: "phone", type: "tel", placeholder: "+91 99950 23841", required: true, }, { - name: "service", - type: "text", - placeholder: "Service Type (Wedding, Portrait, etc.)", - required: true, + name: "service", type: "text", placeholder: "Service Type (Wedding, Portrait, etc.)", required: true, }, ]} textarea={{ - name: "message", - placeholder: "Tell us about your photography needs and vision...", - rows: 5, + name: "message", placeholder: "Tell us about your photography needs and vision...", rows: 5, required: true, }} buttonText="Send Inquiry" -- 2.49.1 From 47379ac7a25483a3c269e937654282972ff04ffc Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 09:14:42 +0000 Subject: [PATCH 3/5] Update src/app/page.tsx --- src/app/page.tsx | 160 +++++++++++------------------------------------ 1 file changed, 35 insertions(+), 125 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 815f14c..b5264f6 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,17 +12,16 @@ import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; import FooterMedia from "@/components/sections/footer/FooterMedia"; const navItems = [ - { name: "Home", id: "home" }, - { name: "About", id: "about" }, - { name: "Services", id: "services" }, - { name: "Reviews", id: "reviews" }, - { name: "Contact", id: "contact" }, + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Services", id: "/services" }, + { name: "Reviews", id: "/reviews" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ { - title: "Studio", - items: [ + title: "Studio", items: [ { label: "Home", href: "/" }, { label: "About Us", href: "/about" }, { label: "Services", href: "/services" }, @@ -30,20 +29,16 @@ const footerColumns = [ ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "Phone: 099950 23841", href: "tel:+919995023841" }, { label: "Book a Session", href: "/contact" }, { label: "Inquiries", href: "/contact" }, { - label: "Location", - href: "https://maps.google.com/?q=Morattammal+Building+Vezhupoor+Rd+Thamarassery+Kerala", - }, + label: "Location", href: "https://maps.google.com/?q=Morattammal+Building+Vezhupoor+Rd+Thamarassery+Kerala"}, ], }, { - title: "Follow Us", - items: [ + title: "Follow Us", items: [ { label: "Instagram", href: "https://instagram.com/d5studio" }, { label: "Facebook", href: "https://facebook.com/d5studio" }, { label: "LinkedIn", href: "https://linkedin.com/company/d5studio" }, @@ -51,8 +46,7 @@ const footerColumns = [ ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Booking Terms", href: "#" }, @@ -80,9 +74,7 @@ export default function HomePage() { navItems={navItems} brandName="D5 Studio" button={{ - text: "Book a Session", - href: "/contact", - }} + text: "Book a Session", href: "/contact"}} /> @@ -93,28 +85,19 @@ export default function HomePage() { tag="5-Star Luxury Photography" tagAnimation="blur-reveal" background={{ - variant: "glowing-orb", - }} + variant: "glowing-orb"}} buttons={[ { - text: "Book a Session", - href: "/contact", - }, + text: "Book a Session", href: "/contact"}, { - text: "View Portfolio", - href: "/services", - }, + text: "View Portfolio", href: "/services"}, ]} buttonAnimation="slide-up" mediaItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/fashion-beautiful-elegant-young-woman-pretty-black-sweater_114579-81882.jpg", - imageAlt: "D5 Studio luxury wedding photography", - }, + imageSrc: "http://img.b2bpic.net/free-photo/fashion-beautiful-elegant-young-woman-pretty-black-sweater_114579-81882.jpg", imageAlt: "D5 Studio luxury wedding photography"}, { - imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-girl-party_23-2149628496.jpg", - imageAlt: "D5 Studio professional portrait session", - }, + imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-girl-party_23-2149628496.jpg", imageAlt: "D5 Studio professional portrait session"}, ]} mediaAnimation="blur-reveal" rating={5} @@ -127,15 +110,10 @@ export default function HomePage() { Date: Sat, 21 Mar 2026 09:14:42 +0000 Subject: [PATCH 4/5] Update src/app/reviews/page.tsx --- src/app/reviews/page.tsx | 82 ++++++++++------------------------------ 1 file changed, 21 insertions(+), 61 deletions(-) diff --git a/src/app/reviews/page.tsx b/src/app/reviews/page.tsx index 79fefc3..b9b1a5a 100644 --- a/src/app/reviews/page.tsx +++ b/src/app/reviews/page.tsx @@ -10,17 +10,16 @@ import FooterMedia from "@/components/sections/footer/FooterMedia"; export default function ReviewsPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "About", id: "about" }, - { name: "Services", id: "services" }, - { name: "Reviews", id: "reviews" }, - { name: "Contact", id: "contact" }, + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Services", id: "/services" }, + { name: "Reviews", id: "/reviews" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ { - title: "Studio", - items: [ + title: "Studio", items: [ { label: "Home", href: "/" }, { label: "About Us", href: "/about" }, { label: "Services", href: "/services" }, @@ -28,8 +27,7 @@ export default function ReviewsPage() { ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "Phone: 099950 23841", href: "tel:+919995023841" }, { label: "Book a Session", href: "/contact" }, { label: "Inquiries", href: "/contact" }, @@ -37,8 +35,7 @@ export default function ReviewsPage() { ], }, { - title: "Follow Us", - items: [ + title: "Follow Us", items: [ { label: "Instagram", href: "https://instagram.com/d5studio" }, { label: "Facebook", href: "https://facebook.com/d5studio" }, { label: "LinkedIn", href: "https://linkedin.com/company/d5studio" }, @@ -46,8 +43,7 @@ export default function ReviewsPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Booking Terms", href: "#" }, @@ -74,9 +70,7 @@ export default function ReviewsPage() { navItems={navItems} brandName="D5 Studio" button={{ - text: "Book a Session", - href: "/contact", - }} + text: "Book a Session", href: "/contact"}} /> @@ -94,13 +88,9 @@ export default function ReviewsPage() { buttonAnimation="slide-up" mediaItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/portrait-cheerful-smiling-woman-sweater-standing-with-arms-folded-isolated-gray-background_231208-7348.jpg?_wi=3", - imageAlt: "D5 Studio client testimonial", - }, + imageSrc: "http://img.b2bpic.net/free-photo/portrait-cheerful-smiling-woman-sweater-standing-with-arms-folded-isolated-gray-background_231208-7348.jpg?_wi=3", imageAlt: "D5 Studio client testimonial"}, { - imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-businessman_107420-84879.jpg?_wi=3", - imageAlt: "D5 Studio client review", - }, + imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-businessman_107420-84879.jpg?_wi=3", imageAlt: "D5 Studio client review"}, ]} mediaAnimation="blur-reveal" rating={5} @@ -113,29 +103,13 @@ export default function ReviewsPage() { Date: Sat, 21 Mar 2026 09:14:43 +0000 Subject: [PATCH 5/5] Update src/app/services/page.tsx --- src/app/services/page.tsx | 104 +++++++++----------------------------- 1 file changed, 23 insertions(+), 81 deletions(-) diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 4c3a82b..fe183a1 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -11,17 +11,16 @@ import FooterMedia from "@/components/sections/footer/FooterMedia"; export default function ServicesPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "About", id: "about" }, - { name: "Services", id: "services" }, - { name: "Reviews", id: "reviews" }, - { name: "Contact", id: "contact" }, + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Services", id: "/services" }, + { name: "Reviews", id: "/reviews" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ { - title: "Studio", - items: [ + title: "Studio", items: [ { label: "Home", href: "/" }, { label: "About Us", href: "/about" }, { label: "Services", href: "/services" }, @@ -29,8 +28,7 @@ export default function ServicesPage() { ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "Phone: 099950 23841", href: "tel:+919995023841" }, { label: "Book a Session", href: "/contact" }, { label: "Inquiries", href: "/contact" }, @@ -38,8 +36,7 @@ export default function ServicesPage() { ], }, { - title: "Follow Us", - items: [ + title: "Follow Us", items: [ { label: "Instagram", href: "https://instagram.com/d5studio" }, { label: "Facebook", href: "https://facebook.com/d5studio" }, { label: "LinkedIn", href: "https://linkedin.com/company/d5studio" }, @@ -47,8 +44,7 @@ export default function ServicesPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Booking Terms", href: "#" }, @@ -75,9 +71,7 @@ export default function ServicesPage() { navItems={navItems} brandName="D5 Studio" button={{ - text: "Book a Session", - href: "/contact", - }} + text: "Book a Session", href: "/contact"}} /> @@ -95,13 +89,9 @@ export default function ServicesPage() { buttonAnimation="slide-up" mediaItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/handsome-guy-embracing-young-happy-lady-near-table_23-2148016863.jpg?_wi=3", - imageAlt: "D5 Studio wedding photography service", - }, + imageSrc: "http://img.b2bpic.net/free-photo/handsome-guy-embracing-young-happy-lady-near-table_23-2148016863.jpg?_wi=3", imageAlt: "D5 Studio wedding photography service"}, { - imageSrc: "http://img.b2bpic.net/free-photo/man-his-professional-photography-studio_23-2149033370.jpg?_wi=3", - imageAlt: "D5 Studio creative studio photography", - }, + imageSrc: "http://img.b2bpic.net/free-photo/man-his-professional-photography-studio_23-2149033370.jpg?_wi=3", imageAlt: "D5 Studio creative studio photography"}, ]} mediaAnimation="blur-reveal" rating={5} @@ -118,21 +108,11 @@ export default function ServicesPage() { tagAnimation="blur-reveal" negativeCard={{ items: [ - "Rushed sessions", - "Generic poses", - "Mediocre lighting", - "Limited creativity", - "Unprofessional editing", - ], + "Rushed sessions", "Generic poses", "Mediocre lighting", "Limited creativity", "Unprofessional editing"], }} positiveCard={{ items: [ - "Unhurried, intimate sessions", - "Authentic, natural moments", - "Cinematic professional lighting", - "Artistic vision and detail", - "Premium editing and retouching", - ], + "Unhurried, intimate sessions", "Authentic, natural moments", "Cinematic professional lighting", "Artistic vision and detail", "Premium editing and retouching"], }} animationType="blur-reveal" textboxLayout="default" @@ -151,37 +131,13 @@ export default function ServicesPage() { tagAnimation="blur-reveal" products={[ { - id: "wedding", - name: "Wedding Photography", - price: "Premium Coverage", - variant: "Full Day", - imageSrc: "http://img.b2bpic.net/free-photo/handsome-guy-embracing-young-happy-lady-near-table_23-2148016863.jpg?_wi=4", - imageAlt: "D5 Studio wedding photography service", - }, + id: "wedding", name: "Wedding Photography", price: "Premium Coverage", variant: "Full Day", imageSrc: "http://img.b2bpic.net/free-photo/handsome-guy-embracing-young-happy-lady-near-table_23-2148016863.jpg?_wi=4", imageAlt: "D5 Studio wedding photography service"}, { - id: "portrait", - name: "Portrait Sessions", - price: "Starting ₹15,000", - variant: "Individual/Couples", - imageSrc: "http://img.b2bpic.net/free-photo/low-section-female-photographer-holding-camera-photo-studio_23-2148038963.jpg?_wi=3", - imageAlt: "D5 Studio professional portrait sessions", - }, + id: "portrait", name: "Portrait Sessions", price: "Starting ₹15,000", variant: "Individual/Couples", imageSrc: "http://img.b2bpic.net/free-photo/low-section-female-photographer-holding-camera-photo-studio_23-2148038963.jpg?_wi=3", imageAlt: "D5 Studio professional portrait sessions"}, { - id: "studio", - name: "Studio Shoots", - price: "Starting ₹12,000", - variant: "Creative Sessions", - imageSrc: "http://img.b2bpic.net/free-photo/man-his-professional-photography-studio_23-2149033370.jpg?_wi=4", - imageAlt: "D5 Studio creative studio photography", - }, + id: "studio", name: "Studio Shoots", price: "Starting ₹12,000", variant: "Creative Sessions", imageSrc: "http://img.b2bpic.net/free-photo/man-his-professional-photography-studio_23-2149033370.jpg?_wi=4", imageAlt: "D5 Studio creative studio photography"}, { - id: "video", - name: "Videography", - price: "Premium Packages", - variant: "Cinematic Videos", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-sound-engineer-studio-with-equipment_1157-47928.jpg?_wi=3", - imageAlt: "D5 Studio professional videography", - }, + id: "video", name: "Videography", price: "Premium Packages", variant: "Cinematic Videos", imageSrc: "http://img.b2bpic.net/free-photo/close-up-sound-engineer-studio-with-equipment_1157-47928.jpg?_wi=3", imageAlt: "D5 Studio professional videography"}, ]} gridVariant="bento-grid" animationType="blur-reveal" @@ -204,34 +160,20 @@ export default function ServicesPage() { useInvertedBackground={false} inputs={[ { - name: "name", - type: "text", - placeholder: "Your Full Name", - required: true, + name: "name", type: "text", placeholder: "Your Full Name", required: true, }, { - name: "email", - type: "email", - placeholder: "your@email.com", - required: true, + name: "email", type: "email", placeholder: "your@email.com", required: true, }, { - name: "phone", - type: "tel", - placeholder: "+91 99950 23841", - required: true, + name: "phone", type: "tel", placeholder: "+91 99950 23841", required: true, }, { - name: "service", - type: "text", - placeholder: "Service Type (Wedding, Portrait, etc.)", - required: true, + name: "service", type: "text", placeholder: "Service Type (Wedding, Portrait, etc.)", required: true, }, ]} textarea={{ - name: "message", - placeholder: "Tell us about your photography needs and vision...", - rows: 5, + name: "message", placeholder: "Tell us about your photography needs and vision...", rows: 5, required: true, }} buttonText="Send Inquiry" -- 2.49.1