initial commit

This commit is contained in:
Kar k1
2025-08-30 18:18:57 +05:30
commit 7219108342
270 changed files with 70221 additions and 0 deletions

36
app/icon.tsx Normal file
View File

@@ -0,0 +1,36 @@
import { ImageResponse } from 'next/og'
export const runtime = 'edge'
export const size = {
width: 32,
height: 32,
}
export const contentType = 'image/png'
export default function Icon() {
return new ImageResponse(
(
<div
style={{
fontSize: 18,
background: 'linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%)',
width: '100%',
height: '100%',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
color: 'white',
borderRadius: 6,
fontWeight: 'bold',
}}
>
SP
</div>
),
{
...size,
}
)
}