diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 4426e87..4a3b14e 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-