Adding logo and description

This commit is contained in:
2025-10-27 15:44:01 -04:00
parent 78cb00f9f5
commit bf6bef6a58
3 changed files with 26 additions and 4 deletions

BIN
public/social-card-dark.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

View File

@@ -1,6 +1,32 @@
import '@rainbow-me/rainbowkit/styles.css'; import '@rainbow-me/rainbowkit/styles.css';
import '@/app/globals.css'; import '@/app/globals.css';
import { Providers } from '@/components/providers'; 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({ export default function RootLayout({
children, children,
@@ -9,10 +35,6 @@ export default function RootLayout({
}) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <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"> <body className="min-h-screen">
<Providers>{children}</Providers> <Providers>{children}</Providers>
</body> </body>