diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 49eeeac..6d20037 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1415 +1,31 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; +import { Poppins } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Payal Bhatia Makeup Academy - Professional Beauty & SFX Courses", description: "Master professional makeup, bridal artistry, hairstyling, and special effects with Payal Bhatia's intensive 3-4 week courses. Limited seats available.", keywords: "makeup courses, professional makeup training, bridal makeup, hairstyling course, SFX makeup, makeup artist training, beauty academy", openGraph: { - title: "Payal Bhatia Makeup Academy", description: "Transform your passion into a professional beauty career. Intensive makeup, hairstyling, and special effects training.", type: "website", siteName: "Payal Bhatia Makeup Academy"}, - twitter: { - card: "summary_large_image", title: "Professional Makeup & Beauty Training", description: "Master makeup artistry and hairstyling with industry professional Payal Bhatia"}, - robots: { - index: true, - follow: true, - }, -}; + title: "Payal Bhatia - Professional Makeup & Hairstyling Courses", description: "Master professional makeup, hairstyling, and special effects with Payal Bhatia. Intensive hands-on training from a Bollywood makeup designer. Enroll now!"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - +