Files
website/src/app/layout.tsx
T

40 lines
1.1 KiB
TypeScript
Raw Normal View History

2023-09-09 22:30:53 -04:00
import { type Metadata } from 'next'
import { Providers } from '@/app/providers'
import { Layout } from '@/components/Layout'
import '@/styles/tailwind.css'
export const metadata: Metadata = {
title: {
2023-09-10 12:02:42 -04:00
template: '%s - Prad Nukala',
2023-09-09 22:30:53 -04:00
default:
'Prad Nukala - Founder & CEO of Sonr, Blockchain Identity Pioneer',
2023-09-09 22:30:53 -04:00
},
description:
'I'm Prad Nukala, founder and CEO of Sonr, an IBC-enabled blockchain for decentralized identity. W3C Working Group Member for DIDs, WebAuthn, and WASM. Building the future of self-sovereign identity and empowering users with control over their digital assets.',
2023-09-09 22:30:53 -04:00
alternates: {
types: {
'application/rss+xml': `${process.env.NEXT_PUBLIC_SITE_URL}/feed.xml`,
},
},
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en" className="h-full antialiased" suppressHydrationWarning>
<body className="flex h-full bg-zinc-50 dark:bg-black">
<Providers>
<div className="flex w-full">
<Layout>{children}</Layout>
</div>
</Providers>
</body>
</html>
)
}