diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 95bdbaa..17e209e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Raleway } 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 raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "FinAssist - Student Financial Assistant | AI-Powered Money Management", description: "Master your student finances with FinAssist. Track expenses, get AI insights, and achieve your financial goals. Free for Taylor's University students.", keywords: "student finance, expense tracker, budget planner, financial assistant, AI money management, college budgeting", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "FinAssist - Take Control of Your Student Finances", description: "Track expenses, predict costs, and receive personalized financial advice designed for students. Start managing your money smarter today.", type: "website", siteName: "FinAssist", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASzLx3IDVSIDGm8joccpM7kz5m/a-modern-financial-dashboard-interface-s-1772601000174-ae35c49f.png", alt: "FinAssist Financial Dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "FinAssist - Student Financial Assistant", description: "AI-powered expense tracking and budget planning for college students", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASzLx3IDVSIDGm8joccpM7kz5m/a-modern-financial-dashboard-interface-s-1772601000174-ae35c49f.png"], - }, -}; + title: "FinAssist - Master Your Student Finances with AI", description: "AI-powered financial management for students. Track expenses, get personalized insights, and build healthy financial habits."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}