diff --git a/src/Components/EventPlanner.css b/src/Components/EventPlanner.css index 2d55d5f..507b8ac 100644 --- a/src/Components/EventPlanner.css +++ b/src/Components/EventPlanner.css @@ -22,7 +22,7 @@ } .get-started-button { - background-color: #f85199; + background-color: #f85191; color: #fff; border: none; padding: 10px 20px; diff --git a/src/Components/EventPlanner.jsx b/src/Components/EventPlanner.jsx index d1f9abd..4952a7e 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 - +import Footer from './Footer'; const EventPlanner = () => { - return ( -
-
-

Welcome to Event Planner

-
-
- ); +return ( +
+
+

Welcome to Event Planner

+
+
+

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

+ +
+
+ + + +
+
+

Features

+ +
+
+

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..10787c6 --- /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