mirror of
https://github.com/prdlk/website.git
synced 2026-08-02 17:31:41 +00:00
40 lines
1.1 KiB
TypeScript
40 lines
1.1 KiB
TypeScript
import { type Metadata } from 'next'
|
|
|
|
import { Providers } from '@/app/providers'
|
|
import { Layout } from '@/components/Layout'
|
|
|
|
import '@/styles/tailwind.css'
|
|
|
|
export const metadata: Metadata = {
|
|
title: {
|
|
template: '%s - Prad Nukala',
|
|
default:
|
|
'Prad Nukala - Founder & CEO of Sonr, Blockchain Identity Pioneer',
|
|
},
|
|
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.',
|
|
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>
|
|
)
|
|
}
|