Skip to content
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

Event planner exercise #3

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
70 changes: 70 additions & 0 deletions src/Components/EventPlanner.jsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,82 @@
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">
<p>
Plan and organize your events effortlessly with Event Planner. From
birthdays to corporate meetings, we've got you covered.
</p>

<button className="get-started-button">Get Started</button>
</section>
<section className="events_categories">
<ul>
<h1>Social Events:</h1>
<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>
<h1>Entertainment Events:</h1>
<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>
<h1>Community Events:</h1>
<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">
<h1>Features</h1>
<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">
<h1>Testimonials</h1>
<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">
<h1>Contact Us</h1>
<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
12 changes: 12 additions & 0 deletions src/Components/Footer.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import React from "react";
const Footer = () => {
return (
<>
<footer>
<p>&copy; Event Planner Organization. All rights reserved.</p>
</footer>
</>
)
}

export default Footer