Skip to content

Events planner app project #19

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 69 additions & 0 deletions src/Components/EventPlanner.jsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,81 @@
import React from 'react';
import './EventPlanner.css'; // Import CSS file for styling
import Footer from "./Footer"

const EventPlanner = () => {
return (
<div className="event-planner-container">
<header>
<h1>Welcome to Event Planner</h1>
</header>
<section className="description" > {/* 1st Section -->*/}
<p>
Plan and organise your events effortlessly with the Events planner App!
</p>
<button className="get-started-button">Get Started</button>

</section>
<section className="events_categories"> {/* 1st Section -->*/}
<ul>
<h2>Social Events:</h2>
<li>Birthday parties</li>
<li>Anniversary celebrations</li>
<li>Wedding receptions</li>
<li>Baby showers</li>
<li>Graduation parties</li>
<li>Family reunions</li>
</ul>
<ul>
<h2> Entertainment Events:</h2>
<li>Concerts</li>
<li>Music festivals</li>
<li>Film screenings</li>
<li>Comedy shows</li>
<li>Art exhibitions</li>
<li>Cultural events</li>
</ul>
<ul>
<h2>Community Events:</h2>
<li>Fundraising events</li>
<li>Charity galas</li>
<li>Volunteer drives</li>
<li>Neighborhood block parties</li>
<li>Community festivals</li>
<li>Cultural celebrations</li>
</ul>
</section>
<section className="features"> {/* 3rd Section -->*/}
<h2>Features</h2>
<ul>
<li>Easy event creation and management</li>
<li>Customizable event templates</li>
<li>Guest list management</li>
<li>Real-time collaboration</li>
<li>Reminders and notifications</li>
</ul>

</section>
<section className="testimonials"> {/* 4th Section -->*/}
<h2>Testimonials</h2>
<div className="testimonial">
<p>"Event Planner made organizing my wedding a breeze. Highly recommended!"</p>
<p className="author">- Emily Johnson</p>
</div>
<div className="testimonial">
<p>"I use Event Planner for all my corporate events. It saves me so much time and effort!"</p>
<p className="author">- John Smith</p>
</div>
</section>
<section className="contact"> {/* 5th Section -->*/}
<h2>Contact Us</h2>
<form>
<input type="text" placeholder="Name" />
<input type="email" placeholder="Email" />
<textarea placeholder="Message"></textarea>
<button className="submit-button">Send</button>
</form>
</section>
<Footer/>
</div>
);
};
Expand Down
11 changes: 11 additions & 0 deletions src/Components/Footer.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import React from 'react';
const Footer = () => {
return (
<>
<footer>
<p>&copy; Event Planner Organization. All rights reserved</p>
</footer>
</>
)}

export default Footer