11 Commits

Author SHA1 Message Date
16b0a8ea72 Merge version_4 into main
Merge version_4 into main
2026-03-04 08:56:43 +00:00
72048ee30f Update src/app/page.tsx 2026-03-04 08:56:38 +00:00
eeb4176cad Merge version_3 into main
Merge version_3 into main
2026-03-04 08:52:35 +00:00
7d74a4576d Update src/app/page.tsx 2026-03-04 08:52:31 +00:00
7c201b5111 Update src/app/layout.tsx 2026-03-04 08:52:30 +00:00
f525d7dc46 Merge version_2 into main
Merge version_2 into main
2026-03-04 08:50:10 +00:00
a420497146 Update src/app/page.tsx 2026-03-04 08:50:06 +00:00
106dc02a86 Update src/app/layout.tsx 2026-03-04 08:50:05 +00:00
67c4a9f333 Merge version_1 into main
Merge version_1 into main
2026-03-04 08:46:22 +00:00
3a27ccaefa Merge version_1 into main
Merge version_1 into main
2026-03-04 08:45:05 +00:00
7133acea45 Merge version_1 into main
Merge version_1 into main
2026-03-04 08:43:15 +00:00
2 changed files with 13 additions and 48 deletions

View File

@@ -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>
);
}
}

View File

@@ -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>
);
}
}