Abhishek Ghimire

A coder by day, problem-solver by night!

I am a dedicated Software Engineer 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.

welcome.ts

// app/api/welcome/route.js
import { NextResponse } from "next/server";

export async function GET() {
  return NextResponse.json({ message: "Welcome to my portfolio!" }, { status: 200 });
}