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 (