Update src/app/layout.tsx

This commit is contained in:
2026-03-04 05:29:22 +00:00
parent 4497a04616
commit 1df14e05e0

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}