Omkar Khot

🌌 Lost in the Stack, Found in the Flow — Building Scalable, Real-Time Web Solutions

I’m a passionate full-stack developer crafting efficient, intuitive applications with the MERN stack. Currently exploring real-time experiences with Socket.IO and delivering impactful platforms like lost-and-found systems and smart leave managers. Always pushing boundaries — one line of code at a time.

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 });
}