diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2f7dfdd..99d14d8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Figtree } 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 figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "MediAI - AI Medical Assistant & Healthcare Platform", description: "Get instant AI-powered medical guidance, symptom checking, hospital location services, and access professional medical education resources. Your personal healthcare assistant powered by advanced AI.", keywords: "AI medical diagnosis, healthcare platform, symptom checker, hospital finder, medical education, telemedicine, AI diagnosis assistant", metadataBase: new URL("https://mediai.com"), - openGraph: { - title: "MediAI - Your AI-Powered Medical Assistant", description: "Intelligent healthcare guidance backed by AI and medical expertise. Symptom analysis, hospital locator, and medical education in one platform.", url: "https://mediai.com", siteName: "MediAI", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afhk9sNCUbPcfTPlZ3jVVJP5zG/a-modern-medical-professional-wearing-a--1772989758876-27d75567.png", alt: "MediAI Platform - AI Medical Assistant"}, - ], - }, - twitter: { - card: "summary_large_image", title: "MediAI - AI Medical Assistant", description: "Get instant medical guidance and find hospitals near you with our AI-powered healthcare platform.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afhk9sNCUbPcfTPlZ3jVVJP5zG/a-modern-medical-professional-wearing-a--1772989758876-27d75567.png"], - }, -}; + title: "MediAI - Your Personal AI Medical Assistant", description: "Get instant medical guidance, AI-powered diagnosis assistance, and locate nearby hospitals. Powered by advanced AI trained on medical expertise."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}