diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 679a246..59c6c57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,20 @@ import type { Metadata } from "next"; -import { DM_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 dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "FireAvert - AI-Powered Fire Prevention & Real-Time Monitoring", description: "Prevent fires before they start with FireAvert's AI-powered detection system. Real-time monitoring, instant alerts, and mobile dashboard. Protect your home today.", keywords: "fire prevention, fire detection, home safety, real-time monitoring, AI fire detection, smart home security", metadataBase: new URL("https://fireavert.com"), - alternates: { - canonical: "https://fireavert.com" - }, - openGraph: { - title: "FireAvert - Intelligent Fire Prevention System", description: "Prevent fires before they start with AI-powered detection and real-time monitoring. 8,700+ fires prevented. Try free today.", type: "website", siteName: "FireAvert", images: [ - { - url: "http://img.b2bpic.net/free-photo/woman-looking-tablet-house-with-automation-lighting-system_482257-7530.jpg", alt: "FireAvert Smart Fire Prevention System" - } - ] - }, - twitter: { - card: "summary_large_image", title: "FireAvert - Prevent Fires Before They Start", description: "AI-powered fire prevention with real-time monitoring and instant alerts.", images: ["http://img.b2bpic.net/free-photo/woman-looking-tablet-house-with-automation-lighting-system_482257-7530.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "FireAvert - Intelligent Fire Prevention", description: "FireAvert uses advanced AI and real-time monitoring to detect fire hazards early, protecting your home and loved ones."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}