diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b56709d..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1443 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Poppins } 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"], -}); - -const poppins = Poppins({ - variable: "--font-poppins", - subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); - -export const metadata: Metadata = { - title: "ZypherCore | AI-Powered Lead Generation & Growth Systems", - description: "AI-powered lead generation and high-converting website design for SMBs. Generate qualified leads, automate customer acquisition, and scale your business with ZypherCore.", - keywords: "AI lead generation, business automation, growth systems, website design, lead generation software, sales automation, SaaS growth", - metadataBase: new URL("https://zyphercore.com"), - alternates: { - canonical: "https://zyphercore.com", - }, - openGraph: { - title: "ZypherCore | AI-Powered Business Growth", - description: "Transform your customer acquisition with AI-powered lead generation and conversion-focused website design.", - url: "https://zyphercore.com", - siteName: "ZypherCore", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AakWkkSmWQQZB1Gh4T4zi6LKDf/a-modern-sleek-ai-powered-business-dashb-1772838191902-7e051d76.png", - alt: "ZypherCore AI Dashboard", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "ZypherCore | AI-Powered Business Growth", - description: "AI lead generation and conversion optimization for growing businesses.", - images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AakWkkSmWQQZB1Gh4T4zi6LKDf/a-modern-sleek-ai-powered-business-dashb-1772838191902-7e051d76.png"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -