File tree Expand file tree Collapse file tree 3 files changed +45
-0
lines changed
Expand file tree Collapse file tree 3 files changed +45
-0
lines changed Original file line number Diff line number Diff line change @@ -205,6 +205,10 @@ import { Button } from '../ui/button';
205205
206206/* eslint-disable */
207207
208+ /* eslint-disable */
209+
210+ /* eslint-disable */
211+
208212function TypingAnimation ( ) {
209213 const el = useRef ( null ) ;
210214
Original file line number Diff line number Diff line change @@ -376,6 +376,16 @@ import CopyButton from './copy-code';
376376/* eslint-disable */
377377// @ts -nocheck
378378
379+ // react-syntax-highlighter has no types
380+
381+ /* eslint-disable */
382+ // @ts -nocheck
383+
384+ // react-syntax-highlighter has no types
385+
386+ /* eslint-disable */
387+ // @ts -nocheck
388+
379389// react-syntax-highlighter has no types
380390/* eslint-disable */
381391// @ts -nocheck
Original file line number Diff line number Diff line change 1+ import { ImageResponse } from 'next/og'
2+
3+ export const size = {
4+ width : 32 ,
5+ height : 32 ,
6+ }
7+ export const contentType = 'image/png'
8+
9+ export default function Icon ( ) {
10+ return new ImageResponse (
11+ (
12+ < div
13+ style = { {
14+ fontSize : 24 ,
15+ background : 'black' ,
16+ width : '100%' ,
17+ height : '100%' ,
18+ display : 'flex' ,
19+ alignItems : 'center' ,
20+ justifyContent : 'center' ,
21+ color : 'white' ,
22+ } }
23+ >
24+ AG
25+ </ div >
26+ ) ,
27+ {
28+ ...size ,
29+ }
30+ )
31+ }
You can’t perform that action at this time.
0 commit comments