From f88742fda17169ea629b1e61d9c0a42b611a9b65 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Mar 2026 06:53:17 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index febd77d..a97f6c1 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -74,7 +74,7 @@ export default function AboutPage() { name: "Sabarish", role: "Founder & Lead Photographer", description: "With over 12 years of experience in professional photography, Sabarish leads the creative vision at Studio Bangalore. Known for his artistic eye, technical mastery, and ability to capture raw emotions, he ensures every project reflects excellence.", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-outdoor-businessman_23-2148763884.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-outdoor-businessman_23-2148763884.jpg?_wi=2", imageAlt: "Sabarish - Founder and Lead Photographer", socialLinks: [ { @@ -92,7 +92,7 @@ export default function AboutPage() { name: "Anaya Kumar", role: "Wedding Photographer", description: "Anaya specializes in capturing candid moments and emotional storytelling during weddings. Her warm approach and creative compositions make couples feel comfortable while preserving their most precious memories.", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-dentist-dentistry-concept-dental-treatment_169016-66975.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-dentist-dentistry-concept-dental-treatment_169016-66975.jpg?_wi=2", imageAlt: "Anaya Kumar - Wedding Photographer", socialLinks: [ { @@ -106,7 +106,7 @@ export default function AboutPage() { name: "Ravi Patel", role: "Portrait & Event Photographer", description: "Ravi brings technical precision and creative flair to every portrait and event session. His expertise in lighting and composition ensures stunning results that exceed expectations.", - imageSrc: "http://img.b2bpic.net/free-photo/cameraman-gives-thumbs-up-new-project_482257-127048.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/cameraman-gives-thumbs-up-new-project_482257-127048.jpg?_wi=2", imageAlt: "Ravi Patel - Portrait & Event Photographer", socialLinks: [ { @@ -120,7 +120,7 @@ export default function AboutPage() { name: "Priya Menon", role: "Photo Retoucher & Editor", description: "Priya's meticulous editing skills and artistic eye ensure every photograph is polished to perfection. She transforms raw images into stunning final pieces that tell your story beautifully.", - imageSrc: "http://img.b2bpic.net/free-photo/woman-blue-coat-street_158595-2580.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/woman-blue-coat-street_158595-2580.jpg?_wi=2", imageAlt: "Priya Menon - Photo Retoucher & Editor", socialLinks: [ { -- 2.49.1 From c49d47b8093e1551ad8cc01f9dc5677857c7ea38 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Mar 2026 06:53:18 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 590a34c..d241742 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Public_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 { Public_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 publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Studio Bangalore - Premium Wedding & Portrait Photography in Indiranagar", + description: "Capture life's beautiful moments with Studio Bangalore. Award-winning photographer specializing in weddings, portraits, pre-wedding shoots, and events in Bengaluru. Artistic, minimal aesthetic with luxury finishes.", + keywords: "photography studio Bangalore, wedding photographer Indiranagar, portrait photography, pre-wedding shoots, event photography Bengaluru, professional photographer, Studio Bangalore", + metadataBase: new URL("https://studiobangalore.com"), + alternates: { + canonical: "https://studiobangalore.com", + }, + openGraph: { + title: "Studio Bangalore - Premium Photography Studio", + description: "Experience artistic photography excellence. Wedding, portrait, and event photography in Bengaluru. Capturing moments. Creating memories.", + url: "https://studiobangalore.com", + siteName: "Studio Bangalore", + images: [ + { + url: "http://img.b2bpic.net/free-photo/man-white-shirt-female-black-dress-pregnancy-photo_1328-5376.jpg", + alt: "Studio Bangalore - Premium Wedding Photography", + }, + ], + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Studio Bangalore - Photography Excellence", + description: "Premium wedding, portrait, and event photography in Bengaluru. Artistic. Minimal. Luxury.", + images: ["http://img.b2bpic.net/free-photo/man-white-shirt-female-black-dress-pregnancy-photo_1328-5376.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}