diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0c04e4f..07a7125 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,14 +1,14 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; import "./styles/variables.css"; import "./styles/base.css"; +import { DM_Sans } from "next/font/google"; -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Axis - Personal Growth Platform", description: "Map your growth across mind, body, spirit, and vocation. Track your progress and achieve true life balance."}; + title: "Axis - Personal Growth Platform", description: "Track your mind, body, spirit, and vocation in one unified system. Transform scattered self-improvement into structured, measurable progress."}; export default function RootLayout({ children, @@ -17,29 +17,23 @@ export default function RootLayout({ }) { return ( -
- {children} -