initial checkin

This commit is contained in:
tim
2025-10-12 19:17:51 -04:00
commit bb2f7c9ce8
44 changed files with 10741 additions and 0 deletions

21
src/app/layout.tsx Normal file
View File

@@ -0,0 +1,21 @@
import '@rainbow-me/rainbowkit/styles.css';
import '@/app/globals.css';
import { Providers } from '@/components/providers';
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en" suppressHydrationWarning>
<head>
<title>Liquidity Party</title>
<meta name="description" content="Decentralized Exchange for Multi-Asset AMM Pools" />
</head>
<body className="min-h-screen">
<Providers>{children}</Providers>
</body>
</html>
);
}