From 24e44ed7bf0d738599cce142e5c9ef327ec0f749 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 09:18:43 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 3e4ede5..d75a565 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -141,7 +141,7 @@ export default function AboutPage() { quote: "D5 Studio captured our wedding day perfectly. Every emotion, every detail, every precious moment was preserved beautifully. We couldn't have asked for better.", name: "Aysha Zaiha", role: "Bride", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-smiling-kitchen_107420-12357.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-smiling-kitchen_107420-12357.jpg?_wi=2", imageAlt: "professional woman portrait smiling confident", }, { @@ -150,7 +150,7 @@ export default function AboutPage() { quote: "From the initial consultation to the final edit, D5 Studio demonstrated professionalism at every step. The results speak volumes about their expertise.", name: "Sreedivya Lakshmi", role: "Corporate Client", - imageSrc: "http://img.b2bpic.net/free-photo/indoor-shot-beautiful-young-caucasian-brunette-female-black-dress-looking-camera_273609-9531.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/indoor-shot-beautiful-young-caucasian-brunette-female-black-dress-looking-camera_273609-9531.jpg?_wi=2", imageAlt: "professional woman portrait photography", }, { @@ -159,7 +159,7 @@ export default function AboutPage() { quote: "The creative vision and artistic eye of the D5 Studio team transformed our vision into reality. Absolutely brilliant work!", name: "Binil Paul", role: "Groom", - imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3632.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3632.jpg?_wi=2", imageAlt: "professional man portrait studio", }, ]} -- 2.49.1 From 461d292037920dc7b48631a31c438b0242418cd4 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 09:18:43 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 59 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 47 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0f7096a..974fb25 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,60 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { DM_Sans } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "D5 Studio - Premium Photography in Kerala | 5-Star Rated", + description: "D5 Studio offers stunning wedding photography, portrait sessions, and videography in Thamarassery, Kerala. 5-star rated, LGBTQ+ friendly, and serving clients across Kerala.", + keywords: "photography studio Kerala, wedding photography, portrait photography, Thamarassery, premium photography, videography", + metadataBase: new URL("https://d5studio.com"), + alternates: { + canonical: "https://d5studio.com", + }, + openGraph: { + title: "D5 Studio - Where Every Moment Becomes Art", + description: "Discover D5 Studio's stunning photography and videography services in Thamarassery, Kerala. 5-star rated photography studio.", + url: "https://d5studio.com", + siteName: "D5 Studio", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/portrait-pretty-woman-posing-dark-sweater-standing-near-lamps_114579-81908.jpg", + alt: "D5 Studio - Premium Photography", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "D5 Studio - Where Every Moment Becomes Art", + description: "5-star rated photography studio in Thamarassery, Kerala specializing in weddings, portraits, and videography.", + images: ["http://img.b2bpic.net/free-photo/portrait-pretty-woman-posing-dark-sweater-standing-near-lamps_114579-81908.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -31,7 +64,9 @@ export default function RootLayout({ return ( - + {children}