mirror of
https://github.com/bubblecup-12/VogelSocialMedia.git
synced 2025-07-07 18:58:50 +00:00
do short explain
This commit is contained in:
parent
6507f5f239
commit
4f58db41af
4 changed files with 74 additions and 7 deletions
|
@ -1,6 +1,8 @@
|
|||
import "./about.css";
|
||||
import { useNavigate } from "react-router-dom";
|
||||
|
||||
function About() {
|
||||
const navigate = useNavigate();
|
||||
return (
|
||||
<div className="mainbox">
|
||||
<div className="intro">
|
||||
|
@ -33,6 +35,36 @@ function About() {
|
|||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div className="explain">
|
||||
<div className="explain-announce">This is</div>
|
||||
<div
|
||||
className="explain-title generic-title cursor-pointer"
|
||||
onClick={() => navigate("/feed")}
|
||||
>
|
||||
Feather Feed
|
||||
</div>
|
||||
<div className="explain-text">
|
||||
... a social media platform about Birds.
|
||||
<br />
|
||||
Look up our
|
||||
<span
|
||||
className="color-orange cursor-pointer"
|
||||
onClick={() => navigate("/feed")}
|
||||
>
|
||||
{" "}
|
||||
Feed{" "}
|
||||
</span>
|
||||
and
|
||||
<span
|
||||
className="color-orange cursor-pointer"
|
||||
onClick={() => navigate("/register")}
|
||||
>
|
||||
{" "}
|
||||
Sign up{" "}
|
||||
</span>
|
||||
for your daily Feather Feed
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue