// Interactive and Professional Portfolio using React + TailwindCSS // Includes animations (Framer Motion), transitions, and SVG graphics import { motion } from “framer-motion”; import { useEffect, useState } from “react”; import { ArrowRight } from “lucide-react”; export default function Portfolio() { const [mounted, setMounted] = useState(false); useEffect(() => setMounted(true), []); return (

Alex Bont

Creative Developer • UI/UX Enthusiast • Tech Explorer

Resume Snapshot

  • Dynamo Fitness (Mar 2023 – Apr 2025): Progressed from Sales Rep to Site Manager. Increased monthly sales from under $100K to $350K, led product integration, and managed customer experience systems (CIN7, Shopify, Freshdesk).
  • Evolution Epoxy (2019 – 2022): Hands-on epoxy flooring work, including surface preparation and mixing. Built strong attention to detail and trade-level expertise.
  • Dan Murphy’s: Warehouse and retail experience. Managed stock replenishment, online orders, and high-volume customer interactions.
  • Skills: CIN7, Shopify, Freshdesk, customer service, warehouse operations, sales growth, retail leadership, team management.
{[1, 2, 3].map((i) => (

Project {i}

A sleek project demonstrating my skills in frontend development, animations, and performance.

View Project
))}

© {new Date().getFullYear()} Alex Bont. Built with React, Tailwind & ❤️

{mounted && ( )}
); }