-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.tsx
More file actions
41 lines (37 loc) · 1.17 KB
/
layout.tsx
File metadata and controls
41 lines (37 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import { Metadata, Viewport } from 'next';
import { ThirdwebProviderWrapper } from '@/components/ThirdwebProviderWrapper';
export const viewport: Viewport = {
themeColor: '#dc2626',
};
export const metadata: Metadata = {
title: 'RedKey DAO — Community Investment & Lending',
description: 'Decentralized investment and lending protocol governed by community consensus.',
icons: {
icon: '/images/redkey-icon-192.png',
},
manifest: '/dao-manifest.json',
openGraph: {
title: 'RedKey DAO',
description: 'A decentralized governance platform for community-driven investment and lending.',
siteName: 'RedKey DAO',
locale: 'en_US',
type: 'website',
},
};
import DaoFooter from './components/DaoFooter';
export default function DaoLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<ThirdwebProviderWrapper>
<div className="flex flex-col min-h-screen bg-[#060608]">
<div className="flex-1 flex flex-col min-h-0">
{children}
</div>
<DaoFooter />
</div>
</ThirdwebProviderWrapper>
);
}