From 2e561aadcc2f8ebcd9e5e40e1509df4460cbeb48 Mon Sep 17 00:00:00 2001 From: ppc Date: Thu, 8 Aug 2024 19:40:00 +0100 Subject: [PATCH] add viewport options, remove font settings --- aimenet-web/app/layout.tsx | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/aimenet-web/app/layout.tsx b/aimenet-web/app/layout.tsx index 84845f5..252bf72 100644 --- a/aimenet-web/app/layout.tsx +++ b/aimenet-web/app/layout.tsx @@ -1,26 +1,24 @@ -import type {Metadata} from "next"; -import {Inter as FontSans} from "next/font/google"; -import {cn} from "@/lib/utils"; -import "./globals.css"; +import type {Metadata, Viewport} from "next"; import {ThemeProvider} from "@/components/theme-provider"; -import {Toaster} from "@/components/ui/toaster"; - -const fontSans = FontSans({ - subsets: ["latin"], - variable: "--font-sans", -}) +import "./globals.css"; export const metadata: Metadata = { - title: "AimeNet" + title: "AimeNet", }; +export const viewport: Viewport = { + initialScale: 1, + width: 'device-width', + themeColor: '#d2005b', +} + export default function RootLayout({children}: Readonly<{ children: React.ReactNode; }>) { return ( AimeNet - + {children}