import type { Metadata } from "next"; import { Zen_Maru_Gothic, Klee_One } from "next/font/google"; import "./globals.css"; import Navbar from "@/components/Navbar"; import GhibliBackground from "@/components/GhibliBackground"; import { Web3Provider } from "@/providers/Web3Provider"; // Soft, rounded Japanese sans for body text… const zen = Zen_Maru_Gothic({ subsets: ["latin"], weight: ["400", "500", "700"], variable: "--font-zen", display: "swap", }); // …and a handwritten storybook face for headings & brand. const klee = Klee_One({ subsets: ["latin"], weight: ["400", "600"], variable: "--font-klee", display: "swap", }); export const metadata: Metadata = { title: "MortgageFi — Decentralized Mortgage Lending", description: "Secure, flexible, and gentle solutions for your digital assets", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (