-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.tsx
99 lines (96 loc) · 3.29 KB
/
page.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
import Image from "next/image";
import { Metadata } from "next";
import {
Article as JsonLDArticle,
WebPage as JsonLDWebPage,
WithContext,
} from 'schema-dts';
const jsonLd: WithContext<JsonLDArticle | JsonLDWebPage> = {
'@context': 'https://schema.org',
'@type': 'WebPage',
name: 'About - 荒音の夜 - UTAU配布サイト',
description: '現音令彼(あらねしむか)の公式設定についての情報です。使用する前にご一読ください。',
url: 'https://arane.uniproject-tech.net/about',
inLanguage: 'ja',
isPartOf: {
'@type': 'WebSite',
name: '荒音の夜 - 現音令彼(あらねしむか)公式サイト',
url: 'https://arane.uniproject-tech.net',
},
image: {
'@type': 'ImageObject',
url: 'https://arane.uniproject-tech.net/images/title.webp',
license: "https://arane.uniproject-tech.net/license",
acquireLicensePage: "https://arane.uniproject-tech.net/license",
creditText: "ramura 2024",
creator: {
'@type': "Person",
name: "ramura",
},
copyrightNotice: "ramura"
},
};
export const metadata: Metadata = {
title: "About - 荒音の夜 - UTAU配布サイト",
description: "現音令彼(あらねしむか)の公式設定についての情報です。使用する前にご一読ください。",
openGraph: {
title: 'About - 荒音の夜 - UTAU配布サイト',
description: '現音令彼(あらねしむか)の公式設定についての情報です。使用する前にご一読ください。',
url: 'https://arane.uniproject-tech.net/about',
siteName: '荒音の夜 - 現音令彼(あらねしむか)公式サイト',
images: [
{
url: 'https://arane.uniproject-tech.net/images/title.webp',
width: 800,
height: 600,
}
],
locale: 'ja_JP',
type: 'website',
},
};
export default function Home() {
return (
<>
<script
key="json-ld"
type="application/ld+json"
dangerouslySetInnerHTML={{ __html: JSON.stringify(jsonLd) }}
/>
<main className="flex min-h-screen items-center justify-center text-white bg-custom-gradient">
<div id="about-desc" className="m-9 p-9">
<h1 className="text-6xl font-bold">About</h1>
<ul className="text-1xl leading-6 p-4">
<li>
名前:
<ruby>
現音令彼<rt>あらねしむか</rt>
</ruby>
</li>
<li>英語表記: AraneShimuka</li>
<li>性別: 不明</li>
<li>声別: 女性</li>
<li>種族: 人外</li>
<li>年齢: ?(少なくとも人間を超えてる)</li>
<li>身長: 173.5(変更可)</li>
<li>誕生日: 7月8日</li>
<li>持ち物: ドライフラワー</li>
<li>趣味: 猫吸い</li>
<li>好きなもの: 猫(特に長毛種)</li>
<li>苦手なもの: 湿度と花粉(花粉症)</li>
<li>一人称: 私</li>
<li>二人称: 君、あなた</li>
<li>三人称: 君たち、あなた達</li>
</ul>
</div>
<Image
className="leading-none m-0 p-0"
src="/images/fullbody.webp"
alt="logo"
width={500}
height={0}
/>
</main>
</>
);
}