2022-05-10 16:33:29 +02:00
|
|
|
import ReactMarkdown from "react-markdown";
|
|
|
|
|
|
|
|
// this is a temporary home page, which is why the markdown content is embedded
|
|
|
|
const md = `This will (one day) be a site to create pronoun cards for yourself,
|
|
|
|
similarly to [Pronouny](https://pronouny.xyz/) and [Pronouns.page](https://en.pronouns.page/).
|
|
|
|
|
|
|
|
You'll be able to create multiple profiles that are linked together,
|
|
|
|
useful for plurality ([what?](https://morethanone.info/)) and kin, or even just for fun!
|
|
|
|
|
|
|
|
For now though, there's just this landing page <3
|
|
|
|
(And no, the "Log in" button doesn't do anything either.)
|
|
|
|
|
2022-05-14 16:52:08 +02:00
|
|
|
Check out the (work in progress) source code on [Codeberg](https://codeberg.org/u1f320/pronouns.cc)!`;
|
2022-05-10 16:33:29 +02:00
|
|
|
|
|
|
|
function Home() {
|
|
|
|
return (
|
|
|
|
<div className="prose prose-slate dark:prose-invert">
|
|
|
|
<ReactMarkdown>{md}</ReactMarkdown>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Home;
|