From d797e5324bcf0275bed9eba5bd16be0ff657c018 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 08:14:09 +0000 Subject: [PATCH] Switch to version 1: modified src/app/layout.tsx --- src/app/layout.tsx | 52 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 44 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fa7fe13..8ad6961 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,22 +1,57 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; +import { Halant } from "next/font/google"; +import { Inter } from "next/font/google"; +import { Figtree } from "next/font/google"; import "./globals.css"; +import { ServiceWrapper } from "@/components/ServiceWrapper"; +import Tag from "@/tag/Tag"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], +const halant = Halant({ + variable: "--font-halant", subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); + +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); + +const figtree = Figtree({ + variable: "--font-figtree", subsets: ["latin"], }); export const metadata: Metadata = { - title: "The PC Wale - Custom Gaming PCs & Editing Builds", description: "Build your dream PC with The PC Wale. Custom gaming PCs, editing workstations, and budget builds optimized for performance. Call 7800333220 for consultation."}; + title: "Sitara Studio | Premium Movie & Photo Studio in Mumbai", description: "Professional studio rental in Parel, Mumbai. Trusted by filmmakers, photographers, and content creators. Book your shoot today with flexible rates and world-class equipment.", keywords: "studio rental Mumbai, photo studio, video production studio, filmmaking studio, Parel studio, professional photography space, music video studio", metadataBase: new URL("https://sitarastudio.com"), + alternates: { + canonical: "https://sitarastudio.com"}, + openGraph: { + title: "Sitara Studio | Premium Movie & Photo Studio in Mumbai", description: "Professional studio rental in Parel, Mumbai. Trusted by 500+ clients for photoshoots, video production, and content creation.", url: "https://sitarastudio.com", siteName: "Sitara Studio", type: "website", images: [ + { + url: "http://img.b2bpic.net/free-photo/set-up-studio-shoot_53876-144951.jpg", alt: "Sitara Studio professional setup"}, + ], + }, + twitter: { + card: "summary_large_image", title: "Sitara Studio | Premium Movie & Photo Studio in Mumbai", description: "Professional studio rental in Parel, Mumbai. Trusted by filmmakers and photographers.", images: ["http://img.b2bpic.net/free-photo/set-up-studio-shoot_53876-144951.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, -}: { +}: Readonly<{ children: React.ReactNode; -}) { +}>) { return ( - - {children} + + + + + {children} +