Minal Satankar

A coder by day, problem-solver by night!

I’m an aspiring Software Engineer with a strong passion for full-stack web development and competitive programming. I specialize in building scalable applications using technologies like Next.js, React, Node.js, and MongoDB. My experience in C++, TypeScript, and Python allows me to solve complex problems efficiently. I am also expanding my skills into DevOps with tools like Docker and Redis to deliver robust, user-focused software solutions. Currently, I am looking for opportunities where I can contribute my skills and grow further.

welcome.ts

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

export async function GET() {
  return NextResponse.json({ message: "Welcome to Minal's portfolio!" });
}