diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 387546e..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1422 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Emrehan Eczanesi - Ankara Yenimahalle Eczane", description: "Ankara Yenimahalle'de profesyonel sağlık hizmetleri sunan Emrehan Eczanesi. Resep ilaçları, OTC ürünleri ve sağlık danışmanlığı.", keywords: "eczane,ankara,yenimahalle,ilaç,sağlık,danışmanlık,resep", openGraph: { - title: "Emrehan Eczanesi - Ankara Yenimahalle Eczane", description: "Türkiye'nin güvenilir eczanesi. Resep ilaçları, tamamlayıcı ürünler ve uzman danışmanlık.", url: "https://emrehaneczanesi.com", siteName: "Emrehan Eczanesi", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/pharmacist-providing-products-clients_482257-75482.jpg", alt: "Emrehan Eczanesi"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Emrehan Eczanesi - Ankara Yenimahalle", description: "Profesyonel sağlık hizmetleri sunan güvenilir eczane", images: ["http://img.b2bpic.net/free-photo/pharmacist-providing-products-clients_482257-75482.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -