From a6df488bdacbba9edd9c89771194246359bddd93 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E2=80=9Cjaironberiguete=E2=80=9D?=
<“Jaironberiguete@gmail.com”>
Date: Sat, 31 May 2025 11:14:13 -0400
Subject: [PATCH 1/4] added categories sections
---
src/Components/EventPlanner.jsx | 61 +++++++++++++++++++++++++++++++++
1 file changed, 61 insertions(+)
diff --git a/src/Components/EventPlanner.jsx b/src/Components/EventPlanner.jsx
index d1f9abd..ecdd70d 100644
--- a/src/Components/EventPlanner.jsx
+++ b/src/Components/EventPlanner.jsx
@@ -7,6 +7,67 @@ const EventPlanner = () => {
+
+ {/* 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 */}
+
+ {/* Event categories content goes here */}
+
+ 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 to showcase user reviews or testimonials */}
+
+ {/* Testimonials content goes here */}
+
+
+ {/* Section to provide contact information or a contact form */}
+
+ {/* Contact content goes here */}
+
);
};
From 074bc906bd79fe38e2d514dfce70a7dd0c9628fd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E2=80=9Cjaironberiguete=E2=80=9D?=
<“Jaironberiguete@gmail.com”>
Date: Sat, 31 May 2025 11:27:31 -0400
Subject: [PATCH 2/4] added ft, testi, contactus sections
---
src/Components/EventPlanner.jsx | 42 +++++++++++++++++++++++++++++----
1 file changed, 38 insertions(+), 4 deletions(-)
diff --git a/src/Components/EventPlanner.jsx b/src/Components/EventPlanner.jsx
index ecdd70d..9eb086e 100644
--- a/src/Components/EventPlanner.jsx
+++ b/src/Components/EventPlanner.jsx
@@ -56,17 +56,51 @@ const EventPlanner = () => {
{/* 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 */}
+
+
);
From 3adce7506b22193cfe9cd8652b31992be5348247 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E2=80=9Cjaironberiguete=E2=80=9D?=
<“Jaironberiguete@gmail.com”>
Date: Sat, 31 May 2025 11:33:10 -0400
Subject: [PATCH 3/4] added the page footer
---
src/Components/EventPlanner.jsx | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/Components/EventPlanner.jsx b/src/Components/EventPlanner.jsx
index 9eb086e..e0a1ca2 100644
--- a/src/Components/EventPlanner.jsx
+++ b/src/Components/EventPlanner.jsx
@@ -1,5 +1,6 @@
import React from 'react';
import './EventPlanner.css'; // Import CSS file for styling
+import Footer from './Footer';
const EventPlanner = () => {
return (
@@ -102,6 +103,7 @@ const EventPlanner = () => {
+
);
};
From fd54db5da1b383dcff4033790d521e8c97fa8d74 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E2=80=9Cjaironberiguete=E2=80=9D?=
<“Jaironberiguete@gmail.com”>
Date: Sat, 31 May 2025 11:46:24 -0400
Subject: [PATCH 4/4] added footer
---
src/Components/Footer.jsx | 10 ++++++++++
1 file changed, 10 insertions(+)
create mode 100644 src/Components/Footer.jsx
diff --git a/src/Components/Footer.jsx b/src/Components/Footer.jsx
new file mode 100644
index 0000000..7d740d4
--- /dev/null
+++ b/src/Components/Footer.jsx
@@ -0,0 +1,10 @@
+import React from 'react';
+ const Footer = () => {
+ return (
+ <>
+
+ >
+ )}
+export default Footer
\ No newline at end of file