diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f391a9c..fa23a3c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,44 +1,20 @@ import type { Metadata } from "next"; -import { Manrope } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "God Owns Love Digital Hub - Mentorship Academy for Affiliate Marketing", description: "Transform your life through digital marketing mastery with Coach Miracle. Faith-based mentorship, practical systems, and personal guidance for aspiring entrepreneurs worldwide.", keywords: "affiliate marketing, digital marketing coaching, online business mentorship, Coach Miracle, entrepreneurship training, digital hub", metadataBase: new URL("https://godownslovedigitalhub.com"), - alternates: { - canonical: "https://godownslovedigitalhub.com"}, - openGraph: { - title: "God Owns Love Digital Hub - Digital Marketing Mentorship", description: "Learn affiliate marketing with integrity, faith, and practical systems from Coach Miracle.", url: "https://godownslovedigitalhub.com", siteName: "God Owns Love Digital Hub", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-people_23-2151099222.jpg", alt: "God Owns Love Digital Hub - Premium Digital Marketing Academy"}, - ], - }, - twitter: { - card: "summary_large_image", title: "God Owns Love Digital Hub - Mentorship Academy", description: "Transform your digital marketing journey with Coach Miracle's proven systems.", images: ["http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-people_23-2151099222.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "God Owns Love Digital Hub", description: "Transform Your Life Through Practical Systems, Personal Mentorship, and Purpose-Driven Entrepreneurship with Coach Miracle Joseph Fidelis"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}