This repository has been archived by the owner on Jan 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: 🎸 「順位表」「開票ツイートまとめ」へのリンクが含まれるコンポーネントを追加した (#971)
- Loading branch information
1 parent
98cd5ca
commit e604988
Showing
2 changed files
with
63 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
import type { NextPage } from 'next' | ||
|
||
export const RankingTableAndTweetSummary: NextPage = () => { | ||
return ( | ||
<div className="bg-white text-black"> | ||
<div className="hero"> | ||
<div className="hero-content text-center w-full"> | ||
<div className="pb-0 w-full"> | ||
<div className="card bg-white shadow-2xl"> | ||
<div className="items-center card-body bg-white text-black"> | ||
<h2 className="card-title text-2xl">結果</h2> | ||
|
||
<div className="my-1" /> | ||
|
||
<div className="text-left"> | ||
<p className="text-center"> | ||
<a | ||
href="https://gensosenkyo.booth.pm/items/4262247" | ||
className="underline underline-offset-4 text-blue-500 hover:text-blue-900" | ||
target="_blank" | ||
rel="noreferrer" | ||
> | ||
順位表 (PDF on Booth) | ||
</a> | ||
</p> | ||
<div className="mb-4" /> | ||
<p> | ||
<a | ||
href="https://min.togetter.com/oMpk1RZ" | ||
className="underline underline-offset-4 text-blue-500 hover:text-blue-900" | ||
target="_blank" | ||
rel="noreferrer" | ||
> | ||
第一部 開票ツイート まとめ | ||
</a> | ||
</p> | ||
<div className="mb-2" /> | ||
<p> | ||
<a | ||
href="https://min.togetter.com/OG4JD89" | ||
className="underline underline-offset-4 text-blue-500 hover:text-blue-900" | ||
target="_blank" | ||
rel="noreferrer" | ||
> | ||
第二部 開票ツイート まとめ | ||
</a> | ||
</p> | ||
</div> | ||
|
||
<div className="my-1" /> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
} |
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