diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 45d3244..63f1fe6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito } 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 nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Spark - Meet Your Perfect Match | Dating App", description: "Connect with genuine people and find meaningful relationships on Spark. AI-powered matching, verified profiles, and advanced safety features. Join millions of singles today.", keywords: "dating app, online dating, find love, relationships, dating platform, singles, match making", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Spark - Dating App for Meaningful Connections", description: "Meet genuine people and find love on Spark. Smart matching algorithm, verified profiles, and ultimate privacy protection.", type: "website", siteName: "Spark", images: [ - { - url: "http://img.b2bpic.net/free-photo/confident-young-man-walking-european-city-street_158595-4715.jpg", alt: "Spark Dating Platform"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Spark - Find Your Perfect Match", description: "Join Spark and discover genuine connections with verified members. AI-powered matching for meaningful relationships.", images: ["http://img.b2bpic.net/free-photo/young-blonde-businesswoman-smiling-happy-standing-city_839833-14128.jpg"], - }, -}; + title: "Spark - Find Your Perfect Match", description: "Connect with genuine people who share your interests and values. Discover meaningful relationships on Spark."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}