diff --git a/src/app/layout.tsx b/src/app/layout.tsx index be525d9..a872635 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,8 +1,6 @@ import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/providers/service/ServiceWrapper"; -import { Tag } from "@/components/common/Tag"; +import "@/styles/globals.css"; const geist = Geist({ variable: "--font-geist-sans", subsets: ["latin"], @@ -13,8 +11,7 @@ const geistMono = Geist_Mono({ }); export const metadata: Metadata = { - title: "MindVault - Your Private Sanctuary for Self-Discovery", description: - "A thoughtful platform combining the therapeutic benefits of personal journaling with community connection. Track your psychological growth, explore your thoughts privately, and connect authentically with others on similar journeys."}; + title: "MindVault - Your Private Sanctuary for Self-Discovery", description: "Share anonymously, connect authentically, and grow psychologically with a supportive community."}; export default function RootLayout({ children, @@ -22,31 +19,9 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - - - - - - - - {children} - + + + {children}