diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9988ba1..1869462 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito } 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 nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "HealthMate - AI Healthcare Navigation for Internationals", description: "Navigate healthcare confidently anywhere in the world. HealthMate's AI assistant helps students, expats, and travelers find doctors, understand local systems, and book appointments in their language.", keywords: "healthcare navigation, international students health, expat healthcare, telemedicine, AI health assistant, global healthcare", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "HealthMate - AI Healthcare Navigation for Internationals", description: "Your AI-powered companion for navigating healthcare abroad. Connect with trusted providers in 100+ countries.", url: "https://healthmate.app", siteName: "HealthMate", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZjRSUOlY6fGf58acjl65OMYb7/a-modern-ai-healthcare-navigation-dashbo-1772807176114-ccc69321.png", alt: "HealthMate Healthcare Navigation Dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "HealthMate - Healthcare Navigation Made Simple", description: "Navigate healthcare confidently anywhere in the world with AI assistance.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZjRSUOlY6fGf58acjl65OMYb7/a-modern-ai-healthcare-navigation-dashbo-1772807176114-ccc69321.png"], - }, -}; + title: "HealthMate - Navigate Healthcare with Confidence", description: "AI-powered healthcare navigation for international students, expats, and travelers. Connect with trusted providers in 100+ countries."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}