diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ac87fb9..0a2b7d4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1443 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Desire To Fly - Habit Tracking & Personal Growth Platform", - description: "Transform your life with Desire To Fly. Track habits, get AI coaching, compete globally, and achieve your dreams with our gamified productivity platform.", - keywords: "habit tracker, productivity app, personal growth, AI coaching, habit building, goal achievement, community challenges", - metadataBase: new URL("https://desiretofly.com"), - alternates: { - canonical: "https://desiretofly.com", - }, - openGraph: { - title: "Desire To Fly - Build Habits, Achieve Dreams", - description: "The ultimate habit tracking platform with AI coaching, analytics, and global community. Start your growth journey today.", - url: "https://desiretofly.com", - siteName: "Desire To Fly", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AeDizwb1vKZ31rIOTi0QOeGvbb/abstract-motion-graphics-showing-upward--1772944390339-cd30b80c.png", - alt: "Desire To Fly - Growth and achievement visualization", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Desire To Fly - Habit Tracking & Growth", - description: "Transform your productivity with AI-powered habit tracking, global leaderboards, and community support.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AeDizwb1vKZ31rIOTi0QOeGvbb/an-airplane-flying-through-clouds-with-a-1772944390934-e8f44b53.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Desire To Fly - Habit Tracking & Personal Growth", description: "Build discipline, track habits, and achieve your dreams with AI coaching, community support, and gamified rewards."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -