From c5ebcde9d65f0b63773d70dc1c5c7cfb71f8400c Mon Sep 17 00:00:00 2001 From: DAVISON03-cpu Date: Sun, 13 Apr 2025 11:55:14 -0400 Subject: [PATCH 1/2] added a Footer.jsx --- src/Components/EventPlanner.jsx | 91 ++++++++++++++++++++++++++++----- src/Components/Footer.jsx | 11 ++++ 2 files changed, 90 insertions(+), 12 deletions(-) create mode 100644 src/Components/Footer.jsx diff --git a/src/Components/EventPlanner.jsx b/src/Components/EventPlanner.jsx index d1f9abd..2d26a1f 100644 --- a/src/Components/EventPlanner.jsx +++ b/src/Components/EventPlanner.jsx @@ -1,14 +1,81 @@ -import React from 'react'; -import './EventPlanner.css'; // Import CSS file for styling - -const EventPlanner = () => { - return ( -
-
-

Welcome to Event Planner

-
-
+ import React from 'react'; + import './EventPlanner.css'; // Import CSS file for styling + import Footer from './Footer'; + const EventPlanner = () => { + return ( +
+
+

Welcome to Event Planner

+
+
+

+ 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..cdf9f8c --- /dev/null +++ b/src/Components/Footer.jsx @@ -0,0 +1,11 @@ + import React from 'react'; + const Footer = () => { + return ( + <> + + + )} + + export default Footer \ No newline at end of file From 16f51f4b96a3df7b1597e5fe69924f66303e4745 Mon Sep 17 00:00:00 2001 From: DAVISON03-cpu Date: Sun, 13 Apr 2025 12:36:51 -0400 Subject: [PATCH 2/2] Revert "added a Footer.jsx" This reverts commit c5ebcde9d65f0b63773d70dc1c5c7cfb71f8400c. --- src/Components/EventPlanner.jsx | 91 +++++---------------------------- src/Components/Footer.jsx | 11 ---- 2 files changed, 12 insertions(+), 90 deletions(-) delete mode 100644 src/Components/Footer.jsx diff --git a/src/Components/EventPlanner.jsx b/src/Components/EventPlanner.jsx index 2d26a1f..d1f9abd 100644 --- a/src/Components/EventPlanner.jsx +++ b/src/Components/EventPlanner.jsx @@ -1,81 +1,14 @@ - import React from 'react'; - import './EventPlanner.css'; // Import CSS file for styling - import Footer from './Footer'; - const EventPlanner = () => { - return ( -
-
-

Welcome to Event Planner

-
-
-

- 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

-
- - - - -
-
-
-
+import React from 'react'; +import './EventPlanner.css'; // Import CSS file for styling + +const EventPlanner = () => { + return ( +
+
+

Welcome to Event Planner

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