diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 44974c0..168491d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,8 +1,11 @@ import type { Metadata } from "next"; +import { Inter } from "next/font/google"; import "@/styles/globals.css"; +const inter = Inter({ subsets: ["latin"] }); + export const metadata: Metadata = { - title: "Create Next App", description: "Generated by create next app"}; + title: "PortfolioOptima - AI-Powered Portfolio Optimization", description: "Optimize your investment portfolio with AI-powered analytics, real-time insights, and personalized rebalancing recommendations."}; export default function RootLayout({ children, @@ -11,7 +14,7 @@ export default function RootLayout({ }) { return ( - {children} + {children}