Portfolio

Projects

A mix of client work, community builds, and personal labs across cloud infrastructure, full-stack engineering, and automation.

Featured Builds

Production-ready deployments with UI, API, infrastructure, and DevOps ownership.

Imars Barbershop Booking Website

  • Production-ready barbershop website with online booking, service selection, and appointment request flow.
  • Built a secure contact and booking system with spam protection, email notifications, and database storage.
Next.jsSupabaseResendTurnstileBooking System

AutoInsight (Marketing + App)

  • Marketing site in React; mobile app in Expo/React Native for on-site inspections.
  • Python/FastAPI backend for VIN decode, image upload, and appraisal endpoints.
ReactReact NativeFastAPISQLite/SQLAWS

Alex Renovation Website

  • Marketing site built with React + responsive Tailwind layout.
  • Optimized Lighthouse scores, image loading, and SEO metadata.
ReactViteTailwind

Yaseen Musallah App

  • Community app with schedule display and announcements.
  • Clean UI, offline-friendly UX, and deployment automation.
React NativeExpoNode/Express

Java Email Service

  • Templated email sender with queue/retry logic and provider failover.
  • Secured secrets and environment configs for multiple environments.
JavaSpringSMTPEmail Service

JavaScript Mini-Games

  • Rock-Paper-Scissors and Guess-the-Number with clean state management.
  • Accessible controls, sound toggles, and score persistence.
JavaScriptHTML5CSS

Code Snapshots

Small excerpts from real services and utilities—ready to copy, adapt, and integrate.

api.pypython
# FastAPI snippet for AutoInsight
from fastapi import FastAPI

app = FastAPI()

@app.get("/")
def root():
    return {"message": "Hello from AutoInsight API"}
EmailService.javajava
// Email service excerpt
class="text-sky-300">public class EmailService {
  class="text-sky-300">public static void main(String[] args) {
    sendEmail(class="text-emerald-300">"user@example.com", class="text-emerald-300">"Hello World!");
  }

  static void sendEmail(String to, String message) {
    System.out.println(class="text-emerald-300">"Email sent to: " + to);
  }
}
fetchData.jsjavascript
// Fetch helper for dashboard widgets
async function getData() {
  const response = await fetch("/api/data");
  const payload = await response.json();
  console.log(payload);
}
getData();
Program.cscsharp
// .NET service registration example
class="text-sky-300">var builder = WebApplication.CreateBuilder(args);

builder.Services.AddControllers();
builder.Services.AddHttpClient();

class="text-sky-300">var app = builder.Build();
app.MapControllers();
app.Run();
Eagles Development Team© 2025 Eagles Development Team. All rights reserved.