-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.tsx
42 lines (40 loc) · 1.47 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
import { Metadata } from "next";
export const metadata: Metadata = {
title: "Contacts - 荒音の夜 - UTAU配布サイト",
description:
"音源、サイトに関するお問い合わせ先です。",
openGraph: {
title: 'Contact - 荒音の夜 - UTAU配布サイト',
description: '音源、サイトに関するお問い合わせ先です。',
url: 'https://arane.uniproject-tech.net/contact',
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 (
<main className="flex min-h-screen flex-col items-left text-white p-20 bg-[#1f1f1f]">
<h1 className="text-5xl pb-3">お問い合わせ先</h1>
<h2 className="text-2xl py-2.5">音源に関するお問い合わせ</h2>
<p className="py-3">
お問い合わせは、TwitterのDMへお願いします。
<br />
Twitter: <a href="https://twitter.com/@ramura0708">@ramura0708</a>
</p>
<h2 className="text-2xl py-2.5">サイトに関するお問い合わせ</h2>
<p className="py-3">
お問い合わせは、下記メールアドレスまでお願いします。[at]を@に変えてください。
<br />
E-mail: webmaster[at]mail.uniproject-tech.net
</p>
</main>
);
}