From ee74b937182afa2dd45ef93a2d9f49e34b10fd4c Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 17:10:41 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 65 +++++++++++++++++++++++++--------------------- 1 file changed, 35 insertions(+), 30 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5b23c75..bf53cfe 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,48 +1,50 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Axis | Map Your Personal Growth", description: "Track your mind, body, spirit, and vocation in one unified system. Transform scattered self-improvement into structured, measurable progress with Axis.", keywords: "personal growth, habit tracking, life balance, wellness, productivity, self-improvement, goal setting, progress tracking", openGraph: { - title: "Axis | Map Your Personal Growth", description: "Track your mind, body, spirit, and vocation in one unified system. Transform scattered self-improvement into structured, measurable progress.", url: "https://axis.app", siteName: "Axis", images: [ - { - url: "http://img.b2bpic.net/free-photo/books-versus-technology-concept_23-2149765859.jpg", alt: "Axis personal growth tracking platform"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "Axis | Map Your Personal Growth", description: "Track your mind, body, spirit, and vocation in one unified system.", images: ["http://img.b2bpic.net/free-photo/books-versus-technology-concept_23-2149765859.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Axis - Personal Growth Platform", description: "Map your growth across mind, body, spirit, and vocation. Track your progress and achieve true life balance."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - + +