Files
solace-bg-dubai/frontend/app/layout.tsx
defiQUG a03417be98
All checks were successful
CI / lint-and-test (push) Successful in 9m52s
chore: consolidate local WIP (repo cleanup 20260707)
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-07 09:41:38 -07:00

44 lines
971 B
TypeScript

import type { Metadata } from "next";
import dynamic from "next/dynamic";
import { Inter } from "next/font/google";
import "./globals.css";
const Providers = dynamic(
() => import("./providers").then((mod) => mod.Providers),
{ ssr: false }
);
const ParticleBackground = dynamic(
() =>
import("@/components/ui/ParticleBackground").then(
(mod) => mod.ParticleBackground
),
{ ssr: false }
);
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Solace Treasury Management",
description: "Treasury Management DApp for Solace Bank Group",
icons: {
icon: [{ url: "/icon.svg", type: "image/svg+xml" }],
shortcut: "/icon.svg",
},
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body className={inter.className}>
<ParticleBackground />
<Providers>{children}</Providers>
</body>
</html>
);
}