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