0
0
Fork 0
This commit is contained in:
xeltica 2021-09-01 21:32:45 +09:00
parent 347a5680ae
commit ba40952a09
7 changed files with 99 additions and 49 deletions

View file

@ -0,0 +1,37 @@
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 IndexWelcomePage: 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>
</>
);
};