From c00ae160f101b42a6f58b5838e0b92d13e3905da Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 16:08:46 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 54 +++++++++++----------------------------------- 1 file changed, 13 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2a6e6ec..23c559e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,26 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Roboto } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { Poppins } from "next/font/google"; +import "./styles/variables.css"; +import "./styles/base.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "HealthMate: AI Healthcare Navigation for Insurance Partners", description: "Reduce support costs, improve expat retention, and modernize your digital offering with HealthMate's AI-first healthcare navigation platform for insurance companies.", keywords: "healthcare navigation, AI insurance platform, expat healthcare, international health plans, support cost reduction, digital health insurance", metadataBase: new URL("https://healthmate.io"), - alternates: { - canonical: "https://healthmate.io"}, - openGraph: { - title: "HealthMate: AI Healthcare Navigation for Insurance Partners", description: "Partner with HealthMate to reduce support costs by 40%, improve policy retention, and empower international policyholders with AI-driven healthcare navigation.", url: "https://healthmate.io", siteName: "HealthMate", type: "website"}, - twitter: { - card: "summary_large_image", title: "HealthMate: AI Healthcare Navigation for Insurance Companies", description: "Reduce support costs & improve customer retention with AI-powered healthcare guidance for expat policyholders."}, - robots: { - index: true, - follow: true, - }, -}; + title: "HealthMate", description: "AI-first healthcare navigation platform for international policyholders"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +