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 = () => {

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 */} +
+ {/* Event categories content goes here */} + + {/* Entertainment-based event types */} + + {/* Community-focused event types */} + +
+ + {/* 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 */} +
{/* 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 */} + +
+
); 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 = () => { +