Skip to content

Commit cdfcb66

Browse files
committed
teh
1 parent 67c1818 commit cdfcb66

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

app/api/data/route.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { NextResponse } from "next/server";
2+
3+
export async function GET(request) {
4+
return NextResponse.json({
5+
success: true,
6+
message: 'hle!',
7+
data: {
8+
message: 'Message and email sent successfully!',
9+
}
10+
}, { status: 200 });
11+
};

0 commit comments

Comments
 (0)