first commit

This commit is contained in:
Puechberty Arthur
2026-03-30 23:07:36 +02:00
commit 49fd31f4db
36 changed files with 30532 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
import { ImageResponse } from 'next/og';
export const size = {
width: 512,
height: 512,
};
export const contentType = 'image/png';
export default function Icon() {
return new ImageResponse(
(
<div
style={{
width: '100%',
height: '100%',
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
background: 'radial-gradient(circle at top, #2b2f77 0%, #0a0a1a 70%)',
fontSize: 360,
}}
>
🌕
</div>
),
{
...size,
}
);
}