All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: kjuulh <contact@kjuulh.io>
11 lines
193 B
TypeScript
11 lines
193 B
TypeScript
import { getServerUrl } from "../../lib/env"
|
|
|
|
const Navbar = () => {
|
|
return <nav>
|
|
<div>Scel</div>
|
|
<a href={`${getServerUrl()}/auth/gitea`}>Login</a>
|
|
</nav>
|
|
}
|
|
|
|
export default Navbar
|