Files
solace-bg-dubai/frontend/app/layout.tsx
defiQUG c94eb595f8
Some checks failed
CI / lint-and-test (push) Has been cancelled
Initial commit: add .gitignore and README
2026-02-09 21:51:53 -08:00

28 lines
676 B
TypeScript

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 (
<html lang="en">
<body className={inter.className}>
<ParticleBackground />
<Providers>{children}</Providers>
</body>
</html>
);
}