From 32863c0a2ff81624991985b9de56e303f5807bdb Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 18:15:19 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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}