diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 39afa8c..4039424 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,20 @@ import type { Metadata } from "next"; -import { Nunito_Sans } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "State Billing Services - Medical Billing & Revenue Cycle Management", - description: "AI-powered medical billing and revenue cycle management for healthcare providers nationwide. 98% clean claim rate. Increase collections by 25%. HIPAA compliant. Get a free revenue audit.", - keywords: "medical billing, revenue cycle management, healthcare billing services, denial management, medical coding, HIPAA compliant billing, healthcare provider services", - metadataBase: new URL("https://statebillingservices.com"), - alternates: { - canonical: "https://statebillingservices.com", - }, - openGraph: { - title: "State Billing Services - Maximize Revenue, Minimize Denials", - description: "AI-powered medical billing services helping healthcare practices increase collections by 25% and reduce denials by 30%. HIPAA compliant, nationwide service.", - url: "https://statebillingservices.com", - siteName: "State Billing Services", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AU5bT1RCGtk8TRLswHc8M8SP60/a-modern-medical-billing-dashboard-inter-1772634542531-226a38af.png", - alt: "Medical billing dashboard", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "State Billing Services - Medical Billing Experts", - description: "Maximize revenue with AI-powered medical billing. 98% clean claim rate. Reduce denials by 30%. Free revenue audit.", - images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AU5bT1RCGtk8TRLswHc8M8SP60/a-modern-medical-billing-dashboard-inter-1772634542531-226a38af.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "State Billing Services - Medical Billing & Revenue Cycle Management", description: "AI-powered medical billing solutions for healthcare practices. Increase collections by 20-30%, reduce denials, and accelerate reimbursements. HIPAA compliant. 98% clean claim rate."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}