24 lines
542 B
TypeScript
24 lines
542 B
TypeScript
import type { Metadata } from 'next'
|
||
import { Inter } from 'next/font/google'
|
||
import './globals.css'
|
||
|
||
const inter = Inter({ subsets: ['latin'], weight: ['300', '400', '500', '600'] })
|
||
|
||
export const metadata: Metadata = {
|
||
title: '420Deals.ch – Premium Swiss CBD Drops',
|
||
description: 'Shop together. Wholesale prices for private buyers.',
|
||
}
|
||
|
||
export default function RootLayout({
|
||
children,
|
||
}: {
|
||
children: React.ReactNode
|
||
}) {
|
||
return (
|
||
<html lang="en">
|
||
<body className={inter.className}>{children}</body>
|
||
</html>
|
||
)
|
||
}
|
||
|