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
113 changes: 105 additions & 8 deletions src/Components/EventPlanner.jsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,111 @@
import React from 'react';
import './EventPlanner.css'; // Import CSS file for styling
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>
return (
<div className="event-planner-container">
{/* Page Header */}
<header>
<h1>Welcome to Event Planner</h1>
</header>
{/* Section for describing the purpose or overview of the app */}
<section className="description">
{/* Brief introduction or marketing message */}
<p>
Plan and organize your events effortlessly with Event Planner. From
birthdays to corporate meetings, we've got you covered.
</p>
{/* Primary call-to-action button */}
<button className="get-started-button">Get Started</button>
</section>
{/* Section to list or categorize different types of events */}
<section className="events_categories">
{/* Social event types */}
<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>
{/* Entertainment-based event types */}
<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>
{/* Community-focused event types */}
<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 to highlight app features or functionalities */}
<section className="features">
{/* Features content goes here */}
{/* Section heading */}
<h2>Features</h2>
{/* List of key platform features */}
<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 to showcase user reviews or testimonials */}
<section className="testimonials">
{/* Testimonials content goes here */}
<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>
);
{/* Another testimonial block */}
<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 to provide contact information or a contact form */}
<section className="contact">
{/* Contact content goes here */}
{/* Section heading */}
<h2>Contact Us</h2>
{/* Contact form */}
<form>
{/* Name input field */}
<input type="text" placeholder="Name" />
{/* Email input field */}
<input type="email" placeholder="Email" />
{/* Message textarea */}
<textarea placeholder="Message"></textarea>
{/* Submit button */}
<button className="submit-button">Send</button>
</form>
</section>
<Footer></Footer>
</div>
);
};

export default EventPlanner;
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