mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-03-28 08:31:35 +01:00
Allow Account sheet on welcome page
This commit is contained in:
parent
43c4fc6534
commit
7e5c3f1bac
1 changed files with 9 additions and 1 deletions
|
@ -2,6 +2,7 @@ import './welcome.css';
|
|||
|
||||
import logo from '../assets/logo.svg';
|
||||
import Link from '../components/link';
|
||||
import states from '../utils/states';
|
||||
import useTitle from '../utils/useTitle';
|
||||
|
||||
function Welcome() {
|
||||
|
@ -41,7 +42,14 @@ function Welcome() {
|
|||
Built
|
||||
</a>{' '}
|
||||
by{' '}
|
||||
<a href="https://mastodon.social/@cheeaun" target="_blank">
|
||||
<a
|
||||
href="https://mastodon.social/@cheeaun"
|
||||
target="_blank"
|
||||
onClick={(e) => {
|
||||
e.preventDefault();
|
||||
states.showAccount = 'cheeaun@mastodon.social';
|
||||
}}
|
||||
>
|
||||
@cheeaun
|
||||
</a>
|
||||
.{' '}
|
||||
|
|
Loading…
Add table
Reference in a new issue