31 lines
823 B
TypeScript
31 lines
823 B
TypeScript
import type React from "react"
|
|
import type { Metadata } from "next"
|
|
import { Geist, Geist_Mono, Merriweather } from "next/font/google"
|
|
import "./globals.css"
|
|
|
|
const _geist = Geist({ subsets: ["latin"] })
|
|
const _geistMono = Geist_Mono({ subsets: ["latin"] })
|
|
const merriweather = Merriweather({
|
|
subsets: ["latin"],
|
|
weight: ["300", "400", "700", "900"],
|
|
variable: "--font-serif",
|
|
})
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Shiitake John's Woodlot",
|
|
description: "Homegrown shiitake mushrooms from 20 acres of old growth forest on Texada Island",
|
|
generator: "v0.app",
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={`font-sans antialiased ${merriweather.variable}`}>{children}</body>
|
|
</html>
|
|
)
|
|
}
|