diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 5e646de..b40179c 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,71 +1,24 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { DM_Sans } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+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 dmSans = DM_Sans({
- variable: "--font-dm-sans",
- subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Auvia - AI Receptionist Platform for Clinics",
- description: "Transform your clinic operations with Auvia's AI receptionist. 24/7 intelligent call handling, appointment management, and real-time analytics for clinic staff and administrators.",
- keywords: "AI receptionist, clinic management, healthcare automation, appointment scheduling, patient communication, medical software",
- robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Auvia - AI Receptionist Platform",
- description: "Your clinic's AI receptionist, fully in control. 24/7 patient interaction handling with real-time visibility.",
- siteName: "Auvia",
- type: "website",
- images: [
- {
- url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVcXuuONLaGYQ8HiYdyturQ4QI/a-modern-healthcare-clinic-dashboard-int-1772681408691-86c65c6e.png",
- alt: "Auvia Clinic Dashboard",
- },
- ],
- },
- twitter: {
- card: "summary_large_image",
- title: "Auvia - AI Receptionist Platform",
- description: "Transform your clinic operations with AI-powered patient interaction management",
- images: [
- "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVcXuuONLaGYQ8HiYdyturQ4QI/a-modern-healthcare-clinic-dashboard-int-1772681408691-86c65c6e.png",
- ],
- },
-};
+ title: "Auvia Labs - AI-Powered Healthcare Solutions", description: "Transform your clinic operations with Auvia's AI receptionist. 24/7 call handling, intelligent appointment scheduling, and real-time analytics for healthcare providers."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-