From c9252bb234bdf45e4ae6ebc666feac7859650f5a Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 20:25:51 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1440 +------------------------------------------- 1 file changed, 7 insertions(+), 1433 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6b813e0..37ed900 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1445 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Archivo } 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 inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const archivo = Archivo({ - variable: "--font-archivo", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "FinControl - Personal Finance Management & Budget Tracking", - description: "Take control of your finances with intelligent tracking, budgeting, goal setting, and financial insights. Manage multiple accounts and make smarter money decisions.", - keywords: "personal finance, budget tracking, expense management, financial goals, money management app", - metadataBase: new URL("https://fincontrol.app"), - alternates: { - canonical: "https://fincontrol.app", - }, - openGraph: { - title: "FinControl - Personal Finance Management", - description: "Smart financial control platform for tracking expenses, budgets, and achieving financial goals.", - type: "website", - siteName: "FinControl", - url: "https://fincontrol.app", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APLXeHKJqU2feMDf1tonz33lP0/modern-personal-finance-dashboard-with-d-1772913907127-47b2757e.png", - alt: "FinControl dashboard preview", - width: 1200, - height: 630, - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "FinControl - Take Control of Your Money", - description: "Intelligent personal finance management platform", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APLXeHKJqU2feMDf1tonz33lP0/modern-personal-finance-dashboard-with-d-1772913907127-47b2757e.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "FinControl - Personal Finance Management", description: "Take charge of your finances with intelligent tracking, budgeting, and insights."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -