import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import { Providers } from "./providers"; import { ParticleBackground } from "@/components/ui/ParticleBackground"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { title: "Solace Treasury Management", description: "Treasury Management DApp for Solace Bank Group", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (