diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 536c0bb..5290126 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,53 +1,20 @@
import type { Metadata } from "next";
-import { Libre_Baskerville } from "next/font/google";
import { Inter } from "next/font/google";
-import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import "@/styles/globals.css";
-const libreBaskerville = Libre_Baskerville({
- variable: "--font-libre-baskerville", subsets: ["latin"],
- weight: ["400", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "LeadFlow AI - Automate Your Lead Generation & Booking", description: "AI-powered lead finding, automated outreach, and appointment booking for businesses. Get more qualified customers 24/7 with LeadFlow AI.", keywords: "lead generation AI, automated outreach, appointment booking, sales automation, AI sales, business automation, lead finder", metadataBase: new URL("https://leadflow-ai.com"),
- alternates: {
- canonical: "https://leadflow-ai.com"},
- openGraph: {
- title: "LeadFlow AI - Automate Your Lead Generation & Booking", description: "Let AI find leads, contact them, and book appointments for your business — 24/7. Start your free trial today.", url: "https://leadflow-ai.com", siteName: "LeadFlow AI", type: "website", images: [
- {
- url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcMG9tVpYq0pKGHr20SiBEvFfs/a-modern-ai-powered-lead-management-dash-1772887395194-af9be843.png", alt: "LeadFlow AI Dashboard"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "LeadFlow AI - Automate Your Lead Generation", description: "AI finds leads, contacts them, books appointments. Start free today.", images: [
- "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcMG9tVpYq0pKGHr20SiBEvFfs/a-modern-ai-powered-lead-management-dash-1772887395194-af9be843.png"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "LeadFlow AI - Automated Lead Generation & Sales Automation", description: "Get more clients automatically with LeadFlow AI. Find leads, contact them, and book appointments 24/7 with artificial intelligence. Start your free trial today."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-