From 5e66fb5ee699d2ce8dca70e9fb251a855ce4c00c Mon Sep 17 00:00:00 2001 From: Vikzura Date: Wed, 11 Dec 2024 02:48:02 -0500 Subject: [PATCH 1/6] create basic Template --- src/Components/EventPlanner.jsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/Components/EventPlanner.jsx b/src/Components/EventPlanner.jsx index d1f9abd..4b106ff 100644 --- a/src/Components/EventPlanner.jsx +++ b/src/Components/EventPlanner.jsx @@ -6,6 +6,20 @@ const EventPlanner = () => {

Welcome to Event Planner

+
+ +
+
+ +
+
+ +
+
+ +
+
+
); From 4fd53d471c2f56435adcf068420da301037c27c7 Mon Sep 17 00:00:00 2001 From: Vikzura Date: Wed, 11 Dec 2024 03:10:29 -0500 Subject: [PATCH 2/6] Define Description and Event Categories --- src/Components/EventPlanner.jsx | 39 +++++++++++++++++++++++++++++---- 1 file changed, 35 insertions(+), 4 deletions(-) diff --git a/src/Components/EventPlanner.jsx b/src/Components/EventPlanner.jsx index 4b106ff..d0bddf4 100644 --- a/src/Components/EventPlanner.jsx +++ b/src/Components/EventPlanner.jsx @@ -6,23 +6,54 @@ const EventPlanner = () => {

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
  • +
- +
+
); }; -export default EventPlanner; +export default EventPlanner; \ No newline at end of file From 6af1bec055afa1e5b89ea265d02bdf25af9b5393 Mon Sep 17 00:00:00 2001 From: Vikzura Date: Wed, 11 Dec 2024 06:22:09 -0500 Subject: [PATCH 3/6] Create Features Section --- src/Components/EventPlanner.jsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/Components/EventPlanner.jsx b/src/Components/EventPlanner.jsx index d0bddf4..691a5b9 100644 --- a/src/Components/EventPlanner.jsx +++ b/src/Components/EventPlanner.jsx @@ -43,7 +43,14 @@ const EventPlanner = () => {
- +

Features

+
    +
  • Easy event creation and management
  • +
  • Customizable event templates
  • +
  • Guest list management
  • +
  • Real-time collaboration
  • +
  • Reminders and notifications
  • +
From 79c7c0d3ac59e5aac4645a86a027a4b8a724e4e1 Mon Sep 17 00:00:00 2001 From: Vikzura Date: Wed, 11 Dec 2024 06:40:38 -0500 Subject: [PATCH 4/6] commit_name --- src/Components/EventPlanner.jsx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/Components/EventPlanner.jsx b/src/Components/EventPlanner.jsx index 691a5b9..aa0ddf5 100644 --- a/src/Components/EventPlanner.jsx +++ b/src/Components/EventPlanner.jsx @@ -53,7 +53,15 @@ const EventPlanner = () => {
- +

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

+
From a201894a36bb58508a80d5260022bbbcfe9041ca Mon Sep 17 00:00:00 2001 From: Vikzura Date: Wed, 11 Dec 2024 07:02:13 -0500 Subject: [PATCH 5/6] Create Contact Section --- src/Components/EventPlanner.jsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/Components/EventPlanner.jsx b/src/Components/EventPlanner.jsx index aa0ddf5..f381d6c 100644 --- a/src/Components/EventPlanner.jsx +++ b/src/Components/EventPlanner.jsx @@ -64,7 +64,13 @@ const EventPlanner = () => {
- +

Contact Us

+
+ + + + +
From d60519a512de85213682b1c5f4d5c672f0ddec90 Mon Sep 17 00:00:00 2001 From: Vikzura Date: Wed, 11 Dec 2024 07:18:23 -0500 Subject: [PATCH 6/6] Create footer git status git push --set-upstream origin create_footer q q; --- src/Components/EventPlanner.jsx | 5 +++++ src/Components/Footer.jsx | 12 ++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 src/Components/Footer.jsx diff --git a/src/Components/EventPlanner.jsx b/src/Components/EventPlanner.jsx index f381d6c..5f5e6f9 100644 --- a/src/Components/EventPlanner.jsx +++ b/src/Components/EventPlanner.jsx @@ -1,5 +1,7 @@ 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 ( @@ -72,9 +74,12 @@ const EventPlanner = () => { +