This commit is contained in:
2025-12-20 10:32:36 +05:30
commit 91c68831bf
23 changed files with 2414 additions and 0 deletions

23
app/layout.tsx Normal file
View File

@@ -0,0 +1,23 @@
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>
)
}