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}
+
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 8e8e3b7..8098d83 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -12,7 +12,7 @@ import FaqBase from "@/components/sections/faq/FaqBase";
import ContactText from "@/components/sections/contact/ContactText";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
-export default function MediTrackPage() {
+export default function SenopsTrackerPage() {
return (
@@ -102,10 +105,10 @@ export default function MediTrackPage() {