Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 61d8ce0ff1 | |||
| 13ce9a0516 |
@@ -1,12 +1,8 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import "./styles/variables.css";
|
|
||||||
import "./styles/base.css";
|
|
||||||
|
|
||||||
const inter = Inter({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "The Daily Dish", description: "Discover fresh, bold flavors in our meticulously curated selection of daily specials."};
|
title: "The Daily Dish", description: "Discover fresh, bold flavors in our meticulously curated selection of daily specials."};
|
||||||
@@ -18,9 +14,7 @@ export default function RootLayout({
|
|||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<body className={inter.variable}>
|
<body className={inter.className}>{children}
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
|
|||||||
Reference in New Issue
Block a user