Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a420497146 | |||
| 106dc02a86 | |||
| 67c4a9f333 | |||
| 3a27ccaefa | |||
| 7133acea45 |
@@ -1,54 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Nunito } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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: {
|
title: "Spark - Find Your Perfect Match", description: "Connect with genuine people who share your interests and values. Discover meaningful relationships on Spark."};
|
||||||
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"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1416,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -31,9 +31,9 @@ export default function LandingPage() {
|
|||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Discover", id: "product" },
|
{ name: "Discover", id: "product" },
|
||||||
{ name: "Features", id: "features" },
|
{ name: "Features", id: "features" },
|
||||||
{ name: "Why Spark", id: "about" },
|
{ name: "Why Spark", id: "features" },
|
||||||
{ name: "FAQ", id: "faq" },
|
{ name: "FAQ", id: "faq" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "footer" }
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Join Now", href: "https://spark-dating.com/signup"
|
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: "Safety Tips", href: "https://spark-dating.com/safety" },
|
||||||
{ label: "Privacy Policy", href: "https://spark-dating.com/privacy" },
|
{ label: "Privacy Policy", href: "https://spark-dating.com/privacy" },
|
||||||
{ label: "Terms of Service", href: "https://spark-dating.com/terms" },
|
{ 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