diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f938eee..377babf 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1419 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Inter_Tight } from "next/font/google"; +import "./styles/variables.css"; +import "./styles/base.css"; 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Expert Dental Care - Visakhapatnam Dental Clinic", description: "Professional dental care in Gajuwaka, Visakhapatnam by Dr. Padmasri Yadla. Specializing in endodontics, root canal, implants, and cosmetic dentistry. Consultation ₹250.", keywords: "dentist visakhapatnam, dental clinic gajuwaka, endodontist, root canal treatment, dental implants, cosmetic dentistry", openGraph: { - title: "Expert Dental Care - Your Trusted Endodontist in Visakhapatnam", description: "Experience professional dental care with Dr. Padmasri Yadla. Over 10 years of expertise in general, restorative, cosmetic, and advanced dental procedures.", url: "https://expertdentalcare.com", siteName: "Expert Dental Care", type: "website", images: [{ - url: "http://img.b2bpic.net/free-photo/close-up-dentist-looking-through-microscope_23-2147906021.jpg", alt: "Expert Dental Care Clinic" - }] - }, - twitter: { - card: "summary_large_image", title: "Expert Dental Care - Visakhapatnam", description: "Professional dental care with Dr. Padmasri Yadla. Consultation ₹250. Open 10 AM – 9 PM daily.", images: ["http://img.b2bpic.net/free-photo/close-up-dentist-looking-through-microscope_23-2147906021.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Expert Dental Care", description: "Professional dental treatments with personalized care from an experienced endodontist."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - + + {children} - +