"use client"; import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogDescription } from "~/components/ui/dialog"; import { Coffee, Github, Heart } from "lucide-react"; import { Button } from "./ui/button"; interface AboutModalProps { isOpen: boolean; onClose: () => void; } export function AboutModal({ isOpen, onClose }: AboutModalProps) { return ( Lewisburg Coffee Map Discover the best coffee spots in Lewisburg, PA.

About the Project

A modern, interactive map application built to help locals and visitors find their perfect cup of coffee. Featuring real-time location services, dark/light mode, and a premium seamless experience.

Attribution

  • Created by Sean O'Connor
  • Built with Next.js 15 & React 19
  • Styled with Tailwind CSS v4
  • Map data provided by OpenStreetMap & Leaflet
  • Icons by Lucide React

© 2026 Sean O'Connor. All Rights Reserved.

Licensed under GPLv3.

); }