From db705c818d66b71444b66f7d272bba5b7a791aca Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 13:06:42 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1416 +------------------------------------------- 1 file changed, 24 insertions(+), 1392 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 05e07d9..e2eb7ea 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1415 +1,48 @@ 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 "./styles/variables.css"; +import "./styles/base.css"; 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"], -}); +import { ServiceWrapper } from "@/providers/ServiceWrapper"; +import { Tag } from "@/components/Tag"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); - export const metadata: Metadata = { - title: "Family Expense Tracker - Simple Household Finance Management", description: "Track family expenses effortlessly with AI categorization, budget monitoring, and bill reminders. Perfect for middle-class families managing household finances together.", keywords: "family expense tracker, household budget app, expense management, budget tracking, family finance, shared expenses", openGraph: { - title: "ExpenseTracker - Manage Family Finances Easily", description: "Simple, intuitive family expense tracking with AI automation and smart budgeting tools.", siteName: "ExpenseTracker", type: "website"}, - twitter: { - card: "summary_large_image", title: "Family Expense Tracker - Simple & Intuitive", description: "Track income, expenses, budgets, and financial goals with your entire family."}, - robots: { - index: true, - follow: true, - }, -}; + title: "ExpenseTracker - Family Expense Management", description: "Simple, intuitive family expense tracking for every household. Track expenses, set budgets, and manage finances together with AI-powered insights."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - +