diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9e3dd5a..1021a50 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,52 +1,24 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Inter } from 'next/font/google'; +import './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 inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { - title: "Bissa Dentistry | Professional Dental Care in Pavlodar", description: "Expert dental care in Pavlodar with experienced doctors, modern equipment, and a focus on patient comfort. Schedule your appointment today.", keywords: "dentistry Pavlodar, dental treatment, dental clinic, professional dentist", metadataBase: new URL("https://bissadentistry.kz"), - alternates: { - canonical: "https://bissadentistry.kz"}, - openGraph: { - title: "Bissa Dentistry - Your Trusted Dental Clinic in Pavlodar", description: "Professional dental care with 15+ years of experience. Serving Pavlodar with modern techniques and patient-focused service.", url: "https://bissadentistry.kz", siteName: "Bissa Dentistry", images: [ - { - url: "http://img.b2bpic.net/free-photo/professional-dentist-tools-chair-dental-office_1204-394.jpg", alt: "Bissa Dental Clinic"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "Bissa Dentistry - Professional Dental Care in Pavlodar", description: "Expert dental care with experienced doctors and modern equipment.", images: ["http://img.b2bpic.net/free-photo/professional-dentist-tools-chair-dental-office_1204-394.jpg"], - }, - robots: { - index: true, - follow: true, - }, + title: 'Bissa Dentistry - Expert Dental Care in Pavlodar', + description: 'Professional dental care with experienced doctors and modern equipment. Fear-free treatment for your whole family.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +