Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 19:16:32 +00:00
2 changed files with 7 additions and 41 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1415,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -64,7 +64,7 @@ export default function LandingPage() {
}
]}
buttons={[
{ text: "Start Free Trial", href: "#pricing" },
{ text: "Get Protected Now", href: "#pricing" },
{ text: "Watch Demo", href: "#features" }
]}
buttonAnimation="slide-up"