diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d6e36d6..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1438 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } 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"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "LeadFlow - Qualified Leads for Financial Consultants", - description: "Get pre-screened, qualified financial leads delivered to your practice. AI-powered lead generation platform trusted by 500+ financial consultants. Start your free trial today.", - keywords: "qualified leads, financial consultant leads, wealth advisor leads, lead generation software, financial services CRM", - metadataBase: new URL("https://leadflow.com"), - alternates: { - canonical: "https://leadflow.com", - }, - openGraph: { - title: "LeadFlow - Qualified Leads for Financial Consultants", - description: "Transform your lead generation with AI-powered qualified prospects for financial consulting practices.", - url: "https://leadflow.com", - siteName: "LeadFlow", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/couple-focused-business-colleagues-watching-content-computer-monitor-holding-pen-mouse-business-communication-teamwork-concept_74855-11648.jpg", - alt: "LeadFlow Platform for Financial Consultants", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "LeadFlow - Qualified Leads for Financial Consultants", - description: "Get pre-screened leads designed for financial services professionals.", - images: [ - "http://img.b2bpic.net/free-photo/couple-focused-business-colleagues-watching-content-computer-monitor-holding-pen-mouse-business-communication-teamwork-concept_74855-11648.jpg", - ], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -