mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-07 04:19:22 +00:00
* feat: hero section revamp * fix: lines and border issue * fix: changelog ux * fix: better * fix: ui revamp * fix: font --------- Co-authored-by: Bereket Engida <86073083+Bekacru@users.noreply.github.com>
11 lines
398 B
TypeScript
11 lines
398 B
TypeScript
import badgestyle from './badge.module.css'
|
|
export const PulicBetaBadge = () => {
|
|
return (
|
|
<div className={badgestyle.beta}>
|
|
<span className={badgestyle.top_key}></span>
|
|
<span className={badgestyle.text}>BETA</span>
|
|
<span className={badgestyle.bottom_key_1}></span>
|
|
<span className={badgestyle.bottom_key_2}></span>
|
|
</div>
|
|
)
|
|
} |