mirror of
https://gitea.tendokyu.moe/ppc/amnet.git
synced 2026-09-27 17:27:55 +03:00
extend meta tags
This commit is contained in:
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user