From 1a10fe38624898051ff8d45e2dbbd6bd570f8d05 Mon Sep 17 00:00:00 2001 From: Eian Landis Date: Tue, 24 Jun 2025 16:55:54 -0400 Subject: [PATCH] EventComponent and Footer Comp --- src/Components/EventPlanner.jsx | 113 +++++++++++++++++++++++++++++--- src/Components/Footer.jsx | 11 ++++ 2 files changed, 116 insertions(+), 8 deletions(-) create mode 100644 src/Components/Footer.jsx diff --git a/src/Components/EventPlanner.jsx b/src/Components/EventPlanner.jsx index d1f9abd..2a599d1 100644 --- a/src/Components/EventPlanner.jsx +++ b/src/Components/EventPlanner.jsx @@ -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 ( -
-
-

Welcome to Event Planner

-
+ return ( +
+ {/* Page Header */} +
+

Welcome to Event Planner

+
+ {/* Section for describing the purpose or overview of the app */} +
+ {/* Brief introduction or marketing message */} +

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

+ {/* Primary call-to-action button */} + +
+ {/* Section to list or categorize different types of events */} +
+ {/* Social event types */} +
    +

    Social Events:

    +
  • Birthday parties
  • +
  • Anniversary celebrations
  • +
  • Wedding receptions
  • +
  • Baby showers
  • +
  • Graduation parties
  • +
  • Family reunions
  • +
+ {/* Entertainment-based event types */} +
    +

    Entertainment Events:

    +
  • Concerts
  • +
  • Music festivals
  • +
  • Film screenings
  • +
  • Comedy shows
  • +
  • Art exhibitions
  • +
  • Cultural events
  • +
+ {/* Community-focused event types */} +
    +

    Community Events:

    +
  • Fundraising events
  • +
  • Charity galas
  • +
  • Volunteer drives
  • +
  • Neighborhood block parties
  • +
  • Community festivals
  • +
  • Cultural celebrations
  • +
+
+ {/* Section to highlight app features or functionalities */} +
+ {/* Features content goes here */} + {/* Section heading */} +

Features

+ {/* List of key platform features */} +
    +
  • Easy event creation and management
  • +
  • Customizable event templates
  • +
  • Guest list management
  • +
  • Real-time collaboration
  • +
  • Reminders and notifications
  • +
+
+ {/* Section to showcase user reviews or testimonials */} +
+ {/* Testimonials content goes here */} +

Testimonials

+
+

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

+

- Emily Johnson

- ); + {/* Another testimonial block */} +
+

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

+

- John Smith

+
+
+ {/* Section to provide contact information or a contact form */} +
+ {/* Contact content goes here */} + {/* Section heading */} +

Contact Us

+ {/* Contact form */} +
+ {/* Name input field */} + + {/* Email input field */} + + {/* Message textarea */} + + {/* Submit button */} + +
+
+
+
+ ); }; export default EventPlanner; diff --git a/src/Components/Footer.jsx b/src/Components/Footer.jsx new file mode 100644 index 0000000..d302f72 --- /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