mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-10 01:03:36 -05:00
Update Home and Feedback.
This commit is contained in:
parent
c1dc2b9a1d
commit
cd394eed3f
3 changed files with 25 additions and 41 deletions
|
@ -11,15 +11,13 @@
|
|||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
.actions {
|
||||
gap: 8px;
|
||||
margin: auto;
|
||||
display: block;
|
||||
font-size: 18px;
|
||||
text-align: center;
|
||||
|
||||
li {
|
||||
list-style: lower-greek;
|
||||
}
|
||||
display: flex;
|
||||
width: fit-content;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import { Home as HomeIcon } from "@styled-icons/boxicons-solid";
|
||||
import Button from "../../components/ui/Button";
|
||||
import { Link } from "react-router-dom";
|
||||
|
||||
import styles from "./Home.module.scss";
|
||||
|
@ -18,24 +19,23 @@ export default function Home() {
|
|||
<Text id="app.special.modals.onboarding.welcome" />{" "}
|
||||
<img src={wideSVG} />
|
||||
</h3>
|
||||
<ul>
|
||||
<li>
|
||||
Go to your <Link to="/friends">friends list</Link>.
|
||||
</li>
|
||||
<li>
|
||||
Give <Link to="/settings/feedback">feedback</Link>.
|
||||
</li>
|
||||
<li>
|
||||
Join <Link to="/invite/Testers">testers server</Link>.
|
||||
</li>
|
||||
<li>
|
||||
View{" "}
|
||||
<div className={styles.actions}>
|
||||
<Link to="/invite/Testers">
|
||||
<Button contrast error>
|
||||
Join testers server
|
||||
</Button>
|
||||
</Link>
|
||||
<Link to="/settings/feedback">
|
||||
<Button contrast>
|
||||
Give feedback
|
||||
</Button>
|
||||
</Link>
|
||||
<a href="https://gitlab.insrt.uk/revolt" target="_blank">
|
||||
source code
|
||||
<Button contrast>
|
||||
Source code
|
||||
</Button>
|
||||
</a>
|
||||
.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -57,23 +57,9 @@ export function Feedback() {
|
|||
onSelect={() => setChecked("Feature Request")}>
|
||||
<Text id="app.settings.pages.feedback.feature" />
|
||||
</Radio>
|
||||
{(location.hostname === "vite.revolt.chat" ||
|
||||
location.hostname === "local.revolt.chat") && (
|
||||
<Radio
|
||||
disabled={state === "sending"}
|
||||
checked={other === "Revite"}
|
||||
onSelect={() => {
|
||||
setChecked("__other_option__");
|
||||
setOther("Revite");
|
||||
}}>
|
||||
Issues with Revite
|
||||
</Radio>
|
||||
)}
|
||||
<Radio
|
||||
disabled={state === "sending"}
|
||||
checked={
|
||||
checked === "__other_option__" && other !== "Revite"
|
||||
}
|
||||
checked={checked === "__other_option__"}
|
||||
onSelect={() => setChecked("__other_option__")}>
|
||||
<Localizer>
|
||||
<InputBox
|
||||
|
|
Loading…
Reference in a new issue