import React from "react"; import "./styles.css"; // external CSS file for styling export default function DavidJuneWebsite() { return (
DJ

David June

56-45 Myrtle Ave, Ridgewood, NY 11385

{/* HERO */}

Reliable local services in Ridgewood

We provide high-quality work with transparent pricing and friendly service. Licensed, insured, and ready to help — book a free estimate today.

  • 📍 56-45 Myrtle Ave, Ridgewood, NY 11385
  • ✉️ info@davidjune.aoneactive.com
  • ⏱️ Mon–Sat: 9:00 AM — 6:00 PM
  • 📞 Phone: (Replace with phone number)
Business preview
{/* SERVICES */}

Services we offer

{/* CONTACT */}

Contact

Address: 56-45 Myrtle Ave, Ridgewood, NY 11385

Email: info@davidjune.aoneactive.com

Phone: (Replace with phone number)

); } function ServiceCard({ title, desc }) { return (

{title}

{desc}

); } function ContactForm() { const handleSubmit = (e) => { e.preventDefault(); const form = e.target; const name = form.name.value; const email = form.email.value; const message = form.message.value; if (!name || !email || !message) { alert("Please fill all fields."); return; } const subject = encodeURIComponent(`Website inquiry from ${name}`); const body = encodeURIComponent(`Name: ${name}\nEmail: ${email}\n\n${message}`); window.location.href = `mailto:info@davidjune.aoneactive.com?subject=${subject}&body=${body}`; }; return (
); }