Adding logo and description
This commit is contained in:
BIN
public/social-card-dark.png
Normal file
BIN
public/social-card-dark.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 58 KiB |
BIN
public/social-card-light.png
Normal file
BIN
public/social-card-light.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 56 KiB |
@@ -1,6 +1,32 @@
|
||||
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,
|
||||
@@ -9,10 +35,6 @@ export default function RootLayout({
|
||||
}) {
|
||||
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>
|
||||
|
||||
Reference in New Issue
Block a user