www_ourverse_new/src/app/layout.jsx
2024-08-26 17:50:50 +02:00

44 lines
1.0 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { DM_Sans, Inter } from 'next/font/google'
import clsx from 'clsx'
import '@/styles/tailwind.css'
const inter = Inter({
subsets: ['latin'],
display: 'swap',
variable: '--font-inter',
})
const dmSans = DM_Sans({
subsets: ['latin'],
weight: ['400', '500', '700'],
display: 'swap',
variable: '--font-dm-sans',
})
export const metadata = {
title: {
template: '%s - DeceptiConf',
default: 'DeceptiConf - A community-driven design conference',
},
description:
'At OurVerse youll learn about the latest dark patterns being developed to trick even the smartest visitors, and youll learn how to deploy them without ever being detected.',
}
export default function RootLayout({ children }) {
return (
<html
lang="en"
className={clsx(
'h-full bg-white antialiased',
inter.variable,
dmSans.variable,
)}
>
<body className="flex min-h-full">
<div className="flex w-full flex-col">{children}</div>
</body>
</html>
)
}