-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import { NextPage } from "next"; | ||
import React from "react"; | ||
import { Metadata } from "next"; | ||
import ReactMarkdown from "react-markdown"; | ||
|
||
export const metadata: Metadata = { | ||
title: "スポンサー", | ||
description: "当プロジェクトを支援してくださるスポンサーのご紹介", | ||
}; | ||
|
||
const sponsorDescription = ` | ||
当プロジェクトを支援してくださるスポンサーの皆様に心より感謝申し上げます。 | ||
## 現在のスポンサー | ||
- 高専キャリア様(VPS提供元) | ||
高専キャリア様は、高専生のサポートを行ったりOB/OGとのコミュニティを運営している団体です。 | ||
高専生に向けたイベントやコンテスト、講座を実施しています。 | ||
このBOTは、高専キャリア様の活動の一つでさくらインターネット様と提供している「みらいサーバー(VPS)」を使用しています。 | ||
`; | ||
|
||
const SponsorsPage: NextPage = () => { | ||
return ( | ||
<main className="flex min-h-screen flex-col items-center bg-white text-black space-y-4"> | ||
<section | ||
id="sponsors" | ||
className="flex flex-col items-center justify-center flex-1 w-full space-y-6 px-3 text-center" | ||
> | ||
<h1 className="text-3xl md:text-4xl font-bold">スポンサー</h1> | ||
<div className="w-full max-w-2xl text-left"> | ||
<ReactMarkdown className="text-base md:text-lg space-y-4">{sponsorDescription}</ReactMarkdown> | ||
</div> | ||
</section> | ||
</main> | ||
); | ||
}; | ||
|
||
export default SponsorsPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters