Files
web/src/app/layout.tsx
2025-10-27 15:44:01 -04:00

44 lines
1.0 KiB
TypeScript

import '@rainbow-me/rainbowkit/styles.css';
import '@/app/globals.css';
import { Providers } from '@/components/providers';
import { Metadata } from 'next';
export const metadata: Metadata = {
title: 'Liquidity Party',
description: 'Where Game Theory Meets the Liquidity Party',
openGraph: {
url: 'https://liquidity.party/',
type: 'website',
title: 'Liquidity Party',
description: 'Where Game Theory Meets the Liquidity Party',
images: [
{
url: '/social-card-light.png',
width: 1200,
height: 630,
alt: 'Liquidity Party',
},
],
},
twitter: {
card: 'summary_large_image',
title: 'Liquidity Party',
description: 'Where Game Theory Meets the Liquidity Party',
images: ['/social-card-light.png'],
},
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en" suppressHydrationWarning>
<body className="min-h-screen">
<Providers>{children}</Providers>
</body>
</html>
);
}