diff --git a/src/Components/EventPlanner.jsx b/src/Components/EventPlanner.jsx index d1f9abd..5f5e6f9 100644 --- a/src/Components/EventPlanner.jsx +++ b/src/Components/EventPlanner.jsx @@ -1,14 +1,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 (

Welcome to Event Planner

+ < section className="description"> +

Plan and organize your events effortlessly with Event Planner. From + birthdays to corporate meetings, we've got you covered. +

+ + + +
+
    +

    Social Events:

    +
  • Birthday parties
  • +
  • Anniversary celebrations
  • +
  • Wedding receptions
  • +
  • Baby showers
  • +
  • Graduation parties
  • +
  • Family reunions
  • +
+
    +

    Entertainment Events:

    +
  • Concerts
  • +
  • Music festivals
  • +
  • Film screenings
  • +
  • Comedy shows
  • +
  • Art exhibitions
  • +
  • Cultural events
  • +
+
    +

    Community Events:

    +
  • Fundraising events
  • +
  • Charity galas
  • +
  • Volunteer drives
  • +
  • Neighborhood block parties
  • +
  • Community festivals
  • +
  • Cultural celebrations
  • +
+
+
+

Features

+
    +
  • Easy event creation and management
  • +
  • Customizable event templates
  • +
  • Guest list management
  • +
  • Real-time collaboration
  • +
  • Reminders and notifications
  • +
+
+
+

Testimonials

+
+

"Event Planner made organizing my wedding a breeze. Highly recommended!"

+

- Emily Johnson

+
+
+

"I use Event Planner for all my corporate events. It saves me so much time and effort!"

+

- John Smith

+
+
+
+

Contact Us

+
+ + + + +
+
+
); + + }; -export default EventPlanner; +export default EventPlanner; \ No newline at end of file diff --git a/src/Components/Footer.jsx b/src/Components/Footer.jsx new file mode 100644 index 0000000..cad2043 --- /dev/null +++ b/src/Components/Footer.jsx @@ -0,0 +1,12 @@ + import React from 'react'; + const Footer = () => { + return ( + <> + + + )} + + export default Footer +