0
0
Fork 0
This commit is contained in:
xeltica 2021-09-01 20:06:33 +09:00
parent 66ced29c6d
commit dbcfdcd0c3
41 changed files with 3637 additions and 791 deletions

View file

@ -0,0 +1,45 @@
import React from 'react';
import { Link } from 'react-router-dom';
import { Ranking } from '../components/Ranking';
import { LoginForm } from '../components/LoginForm';
import { DeveloperInfo } from '../components/DeveloperInfo';
import { HashtagTimeline } from '../components/HashtagTimeline';
import { Header } from '../components/Header';
export const IndexPage: React.VFC = () => {
return (
<>
<Header>
<article className="mt-4">
<p>
Misskeyは楽しいものです1
</p>
<p>
</p>
</article>
<LoginForm />
</Header>
<article className="xarticle card ghost">
<div className="body">
<h1 className="mb-1"></h1>
<Ranking limit={10} />
<Link to="/ranking"></Link>
</div>
</article>
<article className="xarticle mt-4 row">
<div className="col-12 pc-6 card ghost">
<div className="body"><DeveloperInfo/></div>
</div>
<div className="col-12 pc-6 card ghost">
<div className="body"><HashtagTimeline hashtag="misshaialert"/></div>
</div>
</article>
<footer className="text-center pa-5">
(C)2020-2021 Xeltica
</footer>
</>
);
};