Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 16b0a8ea72 | |||
| 72048ee30f | |||
| eeb4176cad | |||
| 7d74a4576d | |||
| 7c201b5111 | |||
| f525d7dc46 | |||
| a420497146 | |||
| 106dc02a86 | |||
| 67c4a9f333 | |||
| 3a27ccaefa | |||
| 7133acea45 |
@@ -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"
|
||||
@@ -78,7 +78,7 @@ export default function LandingPage() {
|
||||
<div id="product" data-section="product">
|
||||
<ProductCardThree
|
||||
title="Discover Profiles"
|
||||
description="Browse through curated profiles and connect with people you're interested in. Our smart matching algorithm ensures you meet compatible people."
|
||||
description="Trusted by 2M+ singles worldwide. Browse through curated profiles and connect with people you're interested in. Our smart matching algorithm ensures you meet compatible people."
|
||||
tag="Core Feature"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
@@ -98,7 +98,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Explore Now", href: "https://spark-dating.com/app" }
|
||||
{ text: "Try Free Now", href: "https://spark-dating.com/app" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
@@ -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" }
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -275,4 +275,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user