generated from ibm-developer-skills-network/coding-project-template
-
Notifications
You must be signed in to change notification settings - Fork 175
/
Copy pathEventPlanner.jsx
85 lines (79 loc) · 3.6 KB
/
EventPlanner.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import React from 'react';
import './EventPlanner.css'; // Import CSS file for styling
import Footer from './Footer'; // include Footer component as attribute as below
const EventPlanner = () => {
return (
<div className="event-planner-container">
<header>
<h1>Welcome to Event Planner</h1>
< 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>
<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">
<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">
<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">
<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/>
</header>
</div>
);
};
export default EventPlanner;