diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fa1d96a..ffd2922 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,23 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Manrope } 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 manrope = Manrope({ - variable: "--font-manrope", 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: "MAA Opticals - Premium Optical Store in Surat | Eye Testing & Eyewear", description: "MAA Opticals is your trusted optical store in Surat offering professional eye testing, prescription glasses, sunglasses, and contact lenses. Premium frames and accurate vision care.", keywords: "optical store in Surat, eye testing Surat, prescription glasses Surat, best optical shop Surat, eyewear, sunglasses, contact lenses", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "MAA Opticals - Premium Eyewear & Professional Eye Testing", description: "Visit MAA Opticals for accurate eye testing, stylish frames, and premium eyewear in Surat. Your trusted local optical store.", type: "website", siteName: "MAA Opticals", images: [ - { - url: "http://img.b2bpic.net/free-photo/young-girl-eyes-consult_23-2148919981.jpg", alt: "MAA Opticals - Premium Optical Store"}, - ], - }, - twitter: { - card: "summary_large_image", title: "MAA Opticals - Trusted Optical Store in Surat", description: "Professional eye testing and premium eyewear. Visit us for stylish frames and accurate prescriptions.", images: ["http://img.b2bpic.net/free-photo/young-girl-eyes-consult_23-2148919981.jpg"], - }, -}; + title: "MAA Opticals | Premium Eye Care & Eyewear in Surat", description: "Professional eye testing and stylish eyewear solutions at MAA Opticals in Surat. Experience accurate prescriptions and premium frames that enhance your vision and style."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}