feat: add initial og image for share link

This commit is contained in:
Ephraim Atta-Duncan
2023-08-29 14:39:49 +00:00
committed by Mythie
parent 023a91832a
commit 1bce169228
8 changed files with 128 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
import { NextResponse } from 'next/server';
export async function GET() {
return NextResponse.json({ hello: 'world' });
}