diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 7604b01..d28fe9c 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,44 +1,22 @@
-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: "Raf Dent - Stomatolog Mińsk Mazowiecki | Implanty, Ortodoncja, Protetyka", description: "Klinika Raf Dent w Mińsku Mazowieckim - implanty, ortodoncja, protetyka, chirurgia i leczenie kanałowe pod mikroskopem. Ponad 50 lat doświadczenia. Zadzwoń: +48 25 7581608", keywords: "stomatolog Mińsk Mazowiecki, dentysta Mińsk Mazowiecki, implanty Mińsk Mazowiecki, ortodonta Mińsk Mazowiecki, protetyka Mińsk Mazowiecki, chirurgia stomatologiczna, leczenie kanałowe", openGraph: {
- title: "Raf Dent - Nowoczesna Stomatologia w Mińsku Mazowieckim", description: "Kompleksowa opieka dentystyczna - implanty, ortodoncja, protetyka. Ponad 50 lat doświadczenia. Profesjonalny zespół specjalistów.", siteName: "Raf Dent", type: "website"},
- twitter: {
- card: "summary_large_image", title: "Raf Dent - Stomatolog Mińsk Mazowiecki", description: "Nowoczesne usługi stomatologiczne - implanty, ortodoncja, protetyka. Zadzwoń: +48 25 7581608"},
- robots: {
- index: true,
- follow: true,
- },
+ title: 'Raf Dent - Gabinet Stomatologiczny',
+ description: 'Kompleksowa opieka dentystyczna dla całej rodziny – ponad 50 lat doświadczenia',
};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-