diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 88b8e2e..3b8698d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,79 +1,25 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; -import { DM_Sans } 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"], -}); +import "./styles/base.css"; +import "./styles/variables.css"; const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "First-Care Wellness | Primary & Preventative Care in Glen Burnie", - description: "Compassionate primary care, preventative healthcare, mental health support & more in Glen Burnie, MD. Book your appointment with experienced providers today.", - keywords: "primary care Glen Burnie, family medicine Maryland, preventative healthcare, mental health services, telehealth, primary care physician", - metadataBase: new URL("https://firstcarewellness.com"), - alternates: { - canonical: "https://firstcarewellness.com", - }, - openGraph: { - title: "First-Care Wellness | Compassionate Healthcare in Glen Burnie", - description: "Experience personalized, compassionate primary and preventative care from experienced healthcare providers in Glen Burnie, Maryland.", - siteName: "First-Care Wellness", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/glass-buildings-seen-from-lake_1127-2268.jpg", - alt: "First-Care Wellness clinic entrance", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "First-Care Wellness | Compassionate Healthcare", - description: "Book your appointment for primary care, preventative health, mental health support & more in Glen Burnie, MD.", - images: ["http://img.b2bpic.net/free-photo/glass-buildings-seen-from-lake_1127-2268.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "First-Care Wellness - Primary Care & Mental Health Services", description: + "Compassionate primary care focused on prevention, wellness, and long-term health. Meet experienced providers in Glen Burnie, MD."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}