Some checks failed
Deploy Explorer Live / deploy (push) Failing after 13s
- Mirror token-aggregation liquidity scaling in tokenAggregation API layer - Tokens page and shared brand/layout tweaks - deploy-live workflow adjustment Co-authored-by: Cursor <cursoragent@cursor.com>
28 lines
821 B
TypeScript
28 lines
821 B
TypeScript
import BrandMark from './BrandMark'
|
|
|
|
export default function BrandLockup({ compact = false }: { compact?: boolean }) {
|
|
return (
|
|
<>
|
|
<BrandMark size={compact ? 'compact' : 'default'} />
|
|
<span className="min-w-0">
|
|
<span
|
|
className={[
|
|
'block truncate font-semibold tracking-[-0.02em] text-gray-950 dark:text-white',
|
|
compact ? 'text-[1.2rem]' : 'text-[1.35rem]',
|
|
].join(' ')}
|
|
>
|
|
DBIS Explorer
|
|
</span>
|
|
<span
|
|
className={[
|
|
'block truncate font-medium uppercase text-gray-500 dark:text-gray-400',
|
|
compact ? 'text-[0.64rem] tracking-[0.13em]' : 'text-[0.68rem] tracking-[0.12em]',
|
|
].join(' ')}
|
|
>
|
|
Chain 138 Explorer by DBIS
|
|
</span>
|
|
</span>
|
|
</>
|
|
)
|
|
}
|