33 lines
784 B
TypeScript
33 lines
784 B
TypeScript
import { type Metadata } from 'next'
|
|
import { Mulish } from 'next/font/google'
|
|
import clsx from 'clsx'
|
|
|
|
import '@/styles/tailwind.css'
|
|
|
|
const mulish = Mulish({
|
|
subsets: ['latin'],
|
|
display: 'swap',
|
|
variable: '--font-mulish',
|
|
})
|
|
|
|
export const metadata: Metadata = {
|
|
title: {
|
|
template: '%s - Mycelium',
|
|
default: 'Mycelium - Unleash the Power of Decentralized Networks',
|
|
},
|
|
description:
|
|
'Discover Mycelium, an end-to-end encrypted IPv6 overlay network. The future of secure, efficient, and scalable networking.',
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="en" className={clsx('antialiased', mulish.variable)}>
|
|
<body className="bg-black text-white">{children}</body>
|
|
</html>
|
|
)
|
|
}
|