extend meta tags

This commit is contained in:
ppc
2024-08-08 22:03:17 +01:00
parent 33e3030ab5
commit 4497f2ec78
+13 -4
View File
@@ -3,7 +3,18 @@ import {ThemeProvider} from "@/components/theme-provider";
import "./globals.css";
export const metadata: Metadata = {
title: "AimeNet",
applicationName: "AimeNet",
authors: [
{
name: "ppc",
}
],
openGraph: {
type: 'website',
locale: 'en_US',
siteName: 'AimeNet',
description: 'Browser-local Aime/Amusement IC Card Switcher'
}
};
export const viewport: Viewport = {
@@ -15,9 +26,7 @@ export const viewport: Viewport = {
export default function RootLayout({children}: Readonly<{ children: React.ReactNode; }>) {
return (
<html lang="en" suppressHydrationWarning>
<head>
<title>AimeNet</title>
</head>
<head></head>
<body className="min-h-screen bg-background">
<ThemeProvider attribute="class" defaultTheme="system" enableSystem disableTransitionOnChange>
{children}