Loading...
I am a dedicated Software Developer specializing in full-stack application development. I enjoy crafting responsive web solutions using modern technologies like Next.js, React, and Tailwind CSS. Currently, I am expanding my skills into mobile development with React Native and Expo, aiming to deliver comprehensive, user-centric software solutions.
1// app/api/welcome/route.js
2import { NextResponse } from "next/server";
3
4export async function GET() {
5 const message = "Welcome to Task X!";
6 const tips = ["Stay consistent", "Plan your day", "Track your tasks"];
7
8 const data = {
9 success: true,
10 message,
11 tips,
12 author: "Gyanaranjan Patra",
13 timestamp: new Date().toISOString(),
14 };
15
16 return NextResponse.json(data);
17}
18