(frontend) remove the beta badge

Product is out of beta since the 15th of December.
This commit is contained in:
lebaudantoine
2025-12-29 12:22:54 +01:00
committed by aleb_the_flash
parent 7c690c369e
commit 4345711771
2 changed files with 1 additions and 24 deletions

View File

@@ -9,6 +9,7 @@ and this project adheres to
## [Unreleased]
- ✨(agent) support Kyutai client for subtitle
- ✨(frontend) remove the beta badge
## [1.1.0] - 2025-12-22

View File

@@ -13,29 +13,6 @@ import { LoginButton } from '@/components/LoginButton'
import { useLoginHint } from '@/hooks/useLoginHint'
const BetaBadge = () => (
<span
className={css({
content: '"Beta"',
display: 'block',
letterSpacing: '-0.02rem',
padding: '0 0.25rem',
backgroundColor: '#E8EDFF',
color: '#0063CB',
fontSize: '12px',
fontWeight: 500,
margin: '0 0 0.9375rem 0.3125rem',
lineHeight: '1rem',
borderRadius: '4px',
width: 'fit-content',
height: 'fit-content',
marginTop: { base: '10px', sm: '5px' },
})}
>
Beta
</span>
)
const Logo = () => (
<img
src="/assets/logo.svg"
@@ -158,7 +135,6 @@ export const Header = () => {
/>
<HStack gap={0}>
<Logo />
<BetaBadge />
</HStack>
</Link>
</Stack>