diff --git a/src/app/layout.tsx b/src/app/layout.tsx index eab8e62..78d2265 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,25 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } 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/variables.css"; +import "./styles/base.css"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); - export const metadata: Metadata = { - title: "MediTrack | Medical Device Tray Tracking Software", description: "Real-time surgical instrument tracking and medical device inventory management for hospitals. HIPAA compliant, 99.8% accuracy, 45% faster device tracking.", keywords: "medical device tracking, surgical instrument tracking, healthcare inventory management, RFID tray tracking, hospital asset management", metadataBase: new URL("https://www.meditrack.com"), - alternates: { - canonical: "https://www.meditrack.com"}, - openGraph: { - title: "MediTrack | Medical Device Tray Tracking Software", description: "Transform your hospital's surgical instrument management with real-time tracking, compliance verification, and operational efficiency.", url: "https://www.meditrack.com", siteName: "MediTrack", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-vector/medical-staff-concept_23-2147794814.jpg", alt: "medical device inventory tracking dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "MediTrack | Medical Device Tray Tracking", description: "Real-time surgical instrument and medical device tracking for healthcare facilities.", images: ["http://img.b2bpic.net/free-vector/medical-staff-concept_23-2147794814.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Senops Tracker - Medical Device Tray Management", description: "Professional medical device tray tracker for surgical centers and hospitals. Real-time inventory, compliance verification, and operational efficiency."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +