Skip to content
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"dev": "vite",
"build": "vite build",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite build; vite preview --host"
"preview": "vite build && vite preview --host"
},
"dependencies": {
"react": "^18.2.0",
Expand Down
82 changes: 78 additions & 4 deletions src/Components/EventPlanner.jsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,87 @@
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>
</div>
<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>
<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/>

</div>
);
};

Expand Down
13 changes: 13 additions & 0 deletions src/Components/Footer.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import React from "react";

const Footer = () => {
return(
<>
<footer>
<p>&copy; Event Planner Organization. All rights reserved.</p>
</footer>
</>
)
}

export default Footer