Files
cbd420/app/layout.tsx
2025-12-22 06:43:19 +01:00

27 lines
629 B
TypeScript
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 type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import './globals.css'
import { I18nProvider } from '@/lib/i18n'
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}>
<I18nProvider>{children}</I18nProvider>
</body>
</html>
)
}