diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d301f3d..19ed69e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1421 +1,20 @@ 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 "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Srijes Women's Beauty Salon & Bridal Studio | Bridal Makeup in Hyderabad", description: "Premium bridal makeup and hair styling at Srijes. Expert makeup artists specializing in long-lasting, flawless bridal looks. Book your appointment in Hyderabad.", keywords: "bridal makeup, bridal studio, makeup artist, hair styling, beauty salon, Hyderabad, engagement makeup, wedding makeup", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Srijes Women's Beauty Salon & Bridal Studio", description: "Your Dream Bridal Look Starts Here. Expert bridal makeup and styling for your special day.", type: "website", siteName: "Srijes", url: "https://srijesbridal.com", images: [ - { - url: "http://img.b2bpic.net/free-photo/portrait-woman-wearing-traditional-sari_52683-87597.jpg", alt: "Bridal makeup service at Srijes"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Srijes Women's Beauty Salon & Bridal Studio", description: "Expert bridal makeup and hair styling in Hyderabad", images: ["http://img.b2bpic.net/free-photo/portrait-woman-wearing-traditional-sari_52683-87597.jpg"], - }, -}; + title: "Srijes Women's Beauty Salon & Bridal Studio", description: "Professional bridal makeup, hair styling, and beauty services for your special day"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -