-
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.
- Loading branch information
Showing
6 changed files
with
90 additions
and
6 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
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
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 |
---|---|---|
|
@@ -2,6 +2,7 @@ import classNames from "classnames"; | |
import { useEffect, useState } from "react"; | ||
import { Tooltip } from "react-daisyui"; | ||
import { FaGamepad, FaMoon } from "react-icons/fa"; | ||
import { Link } from "react-router-dom"; | ||
|
||
import StorageTool from "@/class/StorageTool"; | ||
import CopyTootrip from "@/components/CopyBtn"; | ||
|
@@ -76,6 +77,15 @@ export default function Top() { | |
<button className="btn bg-base-300">[email protected]</button> | ||
</CopyTootrip> | ||
</ConfigSection> | ||
|
||
<ConfigSection name="開発者募集"> | ||
<p> | ||
<Link to="/wanted" className="link-info link"> | ||
こちら | ||
</Link> | ||
を御覧ください。 | ||
</p> | ||
</ConfigSection> | ||
</> | ||
); | ||
} | ||
|
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,53 @@ | ||
import { Link } from "react-router-dom"; | ||
|
||
import Heading from "@/components/Heading"; | ||
|
||
export default function Wanted() { | ||
return ( | ||
<> | ||
<Heading.h1>開発者募集</Heading.h1> | ||
<p> | ||
この拡張機能はGitHub上でMITライセンスの基で公開されており、現在Contributerを募集しています。 | ||
以下に技術的な概要を掲載しますので、興味のある方はぜひ | ||
<Link to="/about" className="link-info link"> | ||
開発者までご連絡 | ||
</Link> | ||
ください。 | ||
</p> | ||
|
||
<Heading.h2>概要</Heading.h2> | ||
<p>群馬大学に所属しており、ウェブ技術に興味のある人。ラーメンが好きな人大歓迎です。</p> | ||
<p>現開発者のお財布と気分次第で、報酬としてラーメンを奢るかもしれません。</p> | ||
|
||
<Heading.h2>技術</Heading.h2> | ||
<div className="flex child:mx-4"> | ||
<div> | ||
<p>現在使用しているもの</p> | ||
<ul> | ||
<li>core-js</li> | ||
<li>daisy UI with React</li> | ||
<li>eslint</li> | ||
<li>Node.js</li> | ||
<li>pnpm</li> | ||
<li>PostCSS</li> | ||
<li>Prettier</li> | ||
<li>React</li> | ||
<li>Sass</li> | ||
<li>Stylelint</li> | ||
<li>Tailwind CSS</li> | ||
<li>TypeScript</li> | ||
<li>Volta</li> | ||
<li>Webpack</li> | ||
</ul> | ||
</div> | ||
<div> | ||
<p>今後使用していきたいもの</p> | ||
<ul> | ||
<li>Deno</li> | ||
<li>TurboPack</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</> | ||
); | ||
} |