Merge version_2 into main #4
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1416,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -31,9 +31,9 @@ export default function LandingPage() {
|
||||
navItems={[
|
||||
{ name: "Discover", id: "product" },
|
||||
{ name: "Features", id: "features" },
|
||||
{ name: "Why Spark", id: "about" },
|
||||
{ name: "Why Spark", id: "features" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
{ name: "Contact", id: "footer" }
|
||||
]}
|
||||
button={{
|
||||
text: "Join Now", href: "https://spark-dating.com/signup"
|
||||
@@ -259,7 +259,7 @@ export default function LandingPage() {
|
||||
{ label: "Safety Tips", href: "https://spark-dating.com/safety" },
|
||||
{ label: "Privacy Policy", href: "https://spark-dating.com/privacy" },
|
||||
{ label: "Terms of Service", href: "https://spark-dating.com/terms" },
|
||||
{ label: "Contact Us", href: "#contact" }
|
||||
{ label: "Contact Us", href: "#footer" }
|
||||
]
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user