busi488budgetbuddy/app/layout.tsx
Joey Eamigh c88d4ba1a8
Customize myAI3 as BudgetBuddy personal finance assistant
- Configure identity, prompts, guardrails for personal finance domain
- Add 6 knowledge sources to Pinecone RAG (budgeting, investing, credit, etc.)
- Add password protection via Next.js middleware
- Add Dockerfile for container deployment
- Customize terms of use with financial disclaimers
2026-04-05 12:14:59 -04:00

35 lines
700 B
TypeScript

import type { Metadata } from "next";
import { Inter, Geist_Mono } from "next/font/google";
import "./globals.css";
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "BudgetBuddy",
description: "Your AI-powered personal finance and budgeting assistant",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body
className={`${inter.variable} ${geistMono.variable} antialiased`}
>
{children}
</body>
</html>
);
}