From 6189a5d05a27cdb8be75533da788d5caa2489c8e Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 06:24:44 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1414 +------------------------------------------- 1 file changed, 11 insertions(+), 1403 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c19b692..d16672a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1418 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Mulish } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Luminary - AI-Powered Mood & Emotional Wellness Tracking", description: "Track your daily emotions, discover mood patterns, and gain mental health clarity with Luminary's AI-powered wellness app. Exportable reports for therapists.", keywords: "mood tracking, emotional wellness, mental health app, emotion tracker, wellness analytics, self-awareness, mental health monitoring", metadataBase: new URL("https://luminary.wellness"), - alternates: { - canonical: "https://luminary.wellness"}, - openGraph: { - title: "Luminary - Your AI Emotional Wellness Companion", description: "Log emotions, understand patterns, support your mental health journey with Luminary's intelligent mood tracking platform.", siteName: "Luminary", type: "website"}, - twitter: { - card: "summary_large_image", title: "Luminary - Track Your Mood, Understand Your Mind", description: "AI-powered emotional wellness tracking for mindful professionals and wellness enthusiasts."}, - robots: { - index: true, - follow: true, - }, -}; + title: "Luminary", description: "Track your mood, understand your mind"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -