Update src/app/layout.tsx
This commit is contained in:
@@ -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({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "kyFaLL - Loungebar Veenendaal", description: "kyFaLL is dé loungebar van Veenendaal. Goede vibe, top shisha, eerlijke prijzen. Dagelijks geopend tot 02:00."};
|
||||
title: "kyFaLL - Dé Loungebar van Veenendaal", description: "Premium loungebar in Veenendaal met kwaliteit shisha, vriendelijke bediening en eerlijke prijzen."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -15,8 +15,8 @@ export default function RootLayout({
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={`${inter.variable}`}>{children}
|
||||
<html lang="nl">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
|
||||
Reference in New Issue
Block a user