Merge version_2 into main #2
@@ -1,50 +1,24 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Manrope } from "next/font/google";
|
||||
import { Outfit } 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 manrope = Manrope({
|
||||
variable: "--font-manrope", subsets: ["latin"],
|
||||
});
|
||||
const outfit = Outfit({
|
||||
subsets: ["latin"],
|
||||
variable: "--font-outfit"});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Life Quest - Transform Your Lifestyle & Work Habits", description: "Join 50,000+ people transforming their lives through interactive quests. Improve productivity, build habits, and unlock your potential with our proven platform.", keywords: "personal development, productivity, lifestyle change, habit building, self-improvement, career coaching", openGraph: {
|
||||
title: "Life Quest - Transform Your Life, One Quest at a Time", description: "Embark on an epic personal development journey with Life Quest. Complete meaningful challenges and unlock your true potential.", type: "website", siteName: "Life Quest", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-vector/meditation-app-relaxed-body-mind_23-2148677137.jpg", alt: "Life Quest Platform Dashboard"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Life Quest - Transform Your Lifestyle & Work", description: "Join thousands transforming their lives through interactive quests. Start your transformation today.", images: ["http://img.b2bpic.net/free-vector/meditation-app-relaxed-body-mind_23-2148677137.jpg"],
|
||||
},
|
||||
};
|
||||
title: "Life Quest - Transform Your Life, One Quest at a Time", description: "Embark on an epic personal development journey. Complete meaningful challenges, track your progress, and unlock your true potential with our interactive life improvement platform."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<body className={outfit.variable}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1412,7 +1386,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -59,7 +59,7 @@ export default function LandingPage() {
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<AboutMetric
|
||||
title="Join thousands of people revolutionizing their lifestyle and work habits through our proven quest-based platform"
|
||||
title="Backed by behavioral science and proven by thousands. Join thousands of people revolutionizing their lifestyle and work habits through our proven quest-based platform"
|
||||
useInvertedBackground={false}
|
||||
metricsAnimation="slide-up"
|
||||
metrics={[
|
||||
|
||||
Reference in New Issue
Block a user