Update src/app/layout.tsx
This commit is contained in:
@@ -1,12 +1,9 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Lenis } from "./lenis";
|
||||
import "./globals.css";
|
||||
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "FinControl - Take Control of Your Finances", description: "Smart financial management platform for tracking expenses, budgeting, and achieving your financial goals."
|
||||
};
|
||||
title: "FinControl - Your Money. Fully Controlled.", description: "Take charge of your finances with intelligent tracking, budgeting, and insights. See exactly where your money goes and make smarter financial decisions."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -15,7 +12,9 @@ export default function RootLayout({
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<body>
|
||||
<Lenis>{children}</Lenis>
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
|
||||
Reference in New Issue
Block a user