Skip to content

Commit

Permalink
デグレ修正
Browse files Browse the repository at this point in the history
  • Loading branch information
takecchi committed Dec 20, 2023
1 parent b76bdc4 commit 16bb25b
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ import EmotionRegistry from '@/app/_providers/Registry';
import CssBaseline from '@mui/material/CssBaseline';
import { ReactNode } from 'react';

const title = 'Cuculus';
const siteName = 'Cuculus';
const description = 'Cuculusは新しいけどどこか懐かしい短文投稿サービスです。';

export const metadata: Metadata = {
applicationName: title,
applicationName: siteName,
icons: {
shortcut: { url: '/icon.png', type: 'image/png' },
apple: { url: '/apple-icon.png', type: 'image/png' },
Expand All @@ -18,16 +18,22 @@ export const metadata: Metadata = {
appleWebApp: {
capable: true,
statusBarStyle: 'default',
title,
title: siteName,
},
title: {
template: `%s | ${siteName}`,
default: siteName,
},
title,
description,
openGraph: {
title,
title: {
template: `%s | ${siteName}`,
default: siteName,
},
description,
siteName: title,
siteName: siteName,
locale: 'ja_JP',
type: 'website',
type: 'article',
images: ['/icon.png'],
},
twitter: {
Expand Down

0 comments on commit 16bb25b

Please sign in to comment.