Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(): turn welcome page redirect buttons into just links #909

Merged
merged 1 commit into from
Jul 27, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ui/src/pages/Welcome/Welcome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ export const Welcome: React.FC = () => (
<h1>Welcome to Bootzooka!</h1>
<p className="mt-3 px-4">
In this template application you can{" "}
<Link to="/register" className="btn btn-outline-dark">
<Link to="/register" className="link-dark">
Register
</Link>{" "}
as a new user,{" "}
<Link to="/login" className="btn btn-outline-dark">
<Link to="/login" className="link-dark">
Login
</Link>{" "}
and later manage your user details.
Expand All @@ -47,7 +47,7 @@ export const Welcome: React.FC = () => (
or{" "}
<a href="https://github.com/softwaremill/bootzooka" target="blank">
Source code
</a>{" "}
</a>
.
</p>
</Container>
Expand Down