mirror of
https://github.com/trafficlunar/tomodachi-share.git
synced 2026-06-28 14:44:15 +00:00
chore: more SEO fixes
This commit is contained in:
parent
65e01603ec
commit
37ee2bca63
3 changed files with 11 additions and 9 deletions
|
|
@ -15,7 +15,7 @@ const lexend = Lexend({
|
|||
|
||||
export const metadata: Metadata = {
|
||||
metadataBase: new URL(process.env.BASE_URL!),
|
||||
title: "TomodachiShare",
|
||||
title: "TomodachiShare — home for Tomodachi Life Miis!",
|
||||
description: "Discover and share Mii residents for your Tomodachi Life island!",
|
||||
keywords: ["mii", "tomodachi life", "nintendo", "tomodachishare", "tomodachi-share", "mii creator", "mii collection"],
|
||||
category: "Gaming",
|
||||
|
|
@ -54,7 +54,7 @@ export default function RootLayout({
|
|||
<Providers>
|
||||
<Header />
|
||||
<AdminBanner />
|
||||
<div className="px-4 py-8 max-w-7xl w-full flex-grow flex flex-col">{children}</div>
|
||||
<main className="px-4 py-8 max-w-7xl w-full flex-grow flex flex-col">{children}</main>
|
||||
<Footer />
|
||||
</Providers>
|
||||
</body>
|
||||
|
|
|
|||
|
|
@ -18,8 +18,12 @@ export default async function Page({ searchParams }: Props) {
|
|||
}
|
||||
|
||||
return (
|
||||
<Suspense fallback={<Skeleton />}>
|
||||
<MiiList searchParams={await searchParams} />
|
||||
</Suspense>
|
||||
<>
|
||||
<h1 className="sr-only">TomodachiShare - index page</h1>
|
||||
|
||||
<Suspense fallback={<Skeleton />}>
|
||||
<MiiList searchParams={await searchParams} />
|
||||
</Suspense>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue