BaseTracker/frontend/app/icon.tsx
2025-10-09 13:08:51 +02:00

31 lines
656 B
TypeScript

import { ImageResponse } from 'next/og';
export const contentType = 'image/png';
export const size = {
width: 512,
height: 512,
};
export default function Icon() {
return new ImageResponse(
(
<div
style={{
height: '100%',
width: '100%',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
backgroundColor: '#0f172a',
color: '#f8fafc',
fontSize: 220,
fontWeight: 700,
letterSpacing: -8,
fontFamily: '"Inter", "Segoe UI", "Helvetica Neue", sans-serif',
}}
>
BT
</div>
)
);
}