Update src/app/layout.tsx

This commit is contained in:
2026-03-04 11:23:13 +00:00
parent b4b334eb39
commit 7857e93b41

View File

@@ -1,13 +1,13 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import "./styles/variables.css";
import "./styles/base.css";
const inter = Inter({ subsets: ["latin"] });
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Burger Blast", description: "Delicious burgers, chicken, and chips at unbeatable prices"};
title: "Welcome", description: "Generated by create next app"};
export default function RootLayout({
children,
@@ -16,7 +16,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={inter.className}>{children}
<body className={inter.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `