-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
145 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,12 +55,52 @@ const App = () => { | |
<img src={logo} className="intro-logo" alt="Bright Cleaners Logo" /> | ||
<div className="dropoff-section mt-8 text-center"> | ||
<h2 className="intr-child text-4xl font-bold mb-4 text-white">Ready to Drop Off?</h2> | ||
<button className="dropoff-btn">Drop Off Now</button> | ||
<button className="dropoff-btn btn-primary" onClick={() => document.getElementById('my_modal_1').showModal()}>Drop Off Now!</button> | ||
<dialog id="my_modal_1" className="modal"> | ||
<div className="modal-box bg-white text-black p-6 rounded-lg shadow-lg"> | ||
<h3 className="font-bold text-lg">Drop Off Your Apparel for Service</h3> | ||
<p className="py-4">Please fill out the information below to drop off your apparel for our services. We will take care of the rest!</p> | ||
<form method="dialog" className="form-container flex flex-col items-center gap-4"> | ||
<label className="input-group input-group-vertical w-full"> | ||
<span className="text-black">Name</span> | ||
<input type="text" className="input input-bordered w-full text-white bg-gray-800" placeholder="Your Name" required /> | ||
</label> | ||
<label className="input-group input-group-vertical w-full"> | ||
<span className="text-black">Email</span> | ||
<input type="email" className="input input-bordered w-full text-white bg-gray-800" placeholder="[email protected]" required /> | ||
</label> | ||
<label className="input-group input-group-vertical w-full"> | ||
<span className="text-black">Contact Number</span> | ||
<input type="tel" className="input input-bordered w-full text-white bg-gray-800" placeholder="Your Phone Number" required /> | ||
</label> | ||
<label className="input-group input-group-vertical w-full"> | ||
<span className="text-black">Service Type</span> | ||
<select className="select select-bordered w-full text-white bg-gray-800" required> | ||
<option disabled selected>Select Service</option> | ||
<option>Dry Cleaning</option> | ||
<option>Tailoring</option> | ||
<option>Shoe Repair</option> | ||
</select> | ||
</label> | ||
<label className="input-group input-group-vertical w-full"> | ||
<span className="text-black">Instructions</span> | ||
<textarea className="textarea textarea-bordered w-full text-white bg-gray-800" placeholder="Any special instructions for your service" rows="3"></textarea> | ||
</label> | ||
<div className="modal-action flex justify-center gap-4"> | ||
<button type="button" className="btn bg-black text-white hover:bg-gray-700" onClick={() => document.getElementById('my_modal_1').close()}>Close</button> | ||
<button type="submit" className="btn bg-white text-black border border-black hover:bg-gray-200">Submit</button> | ||
</div> | ||
</form> | ||
</div> | ||
</dialog> | ||
|
||
|
||
</div> | ||
</div> | ||
</section> | ||
|
||
<section id="services" className="services-section text-center py-12 bg-light text-white"> | ||
<div class="border-top"></div> | ||
<h2 className="text-3xl font-bold mb-4">Our Services</h2> | ||
<p className="text-lg mb-8">Providing top-notch care for your clothes and shoes</p> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.