๐ Welcome to my digital space
Abdi Worku
Coder by day, Builder by night.
A dedicated Software Engineer crafting responsive web solutions with Next.js, React, and Tailwind CSS. Specializing in scalable backend systems using Node.js, Express, and MongoDB.

welcome.ts
1// app/api/welcome/route.js
2import { NextResponse } from "next/server";
3
4export async function GET() {
5 return NextResponse.json({ message: "Welcome to my portfolio!" }, { status: 200 });
6}