From da1e1b352b4a0d700e8fc0f53f1e8b292f4efce0 Mon Sep 17 00:00:00 2001 From: Flatlogic Bot Date: Thu, 11 Sep 2025 06:06:10 +0000 Subject: [PATCH] UPDATED --- assets/css/custom.css | 63 +++++++ assets/js/main.js | 38 +++++ index.php | 387 ++++++++++++++++++++++++++++-------------- 3 files changed, 362 insertions(+), 126 deletions(-) create mode 100644 assets/css/custom.css create mode 100644 assets/js/main.js diff --git a/assets/css/custom.css b/assets/css/custom.css new file mode 100644 index 0000000..f70d6cc --- /dev/null +++ b/assets/css/custom.css @@ -0,0 +1,63 @@ + +:root { + --primary-color: #0D6EFD; + --secondary-color: #6C757D; + --background-color: #F8F9FA; + --surface-color: #FFFFFF; + --primary-gradient: linear-gradient(45deg, #0d6efd, #4da8ff); + --border-radius: 0.5rem; +} + +body { + background-color: var(--background-color); + font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif; +} + +.section-padding { + padding: 6rem 0; +} + +.navbar { + transition: all 0.3s ease-in-out; +} + +.navbar-scrolled { + background-color: var(--surface-color) !important; + box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); + padding-top: 0.5rem; + padding-bottom: 0.5rem; +} + +.hero { + background-image: var(--primary-gradient); + color: white; + padding: 8rem 0; + text-align: center; +} + +.hero h1 { + font-weight: 700; +} + +.card, .form-control, .btn { + border-radius: var(--border-radius); +} + +.card { + border: none; + box-shadow: 0 0.5rem 1rem rgba(0,0,0,.1); +} + +.form-control:focus { + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); + border-color: #86b7fe; +} + +.btn-primary { + background-color: var(--primary-color); + border-color: var(--primary-color); +} + +.footer { + background-color: var(--surface-color); +} diff --git a/assets/js/main.js b/assets/js/main.js new file mode 100644 index 0000000..e4b4d1c --- /dev/null +++ b/assets/js/main.js @@ -0,0 +1,38 @@ + +document.addEventListener('DOMContentLoaded', function () { + // Navbar shrink on scroll + const navbar = document.querySelector('.navbar'); + if (navbar) { + window.addEventListener('scroll', () => { + if (window.scrollY > 50) { + navbar.classList.add('navbar-scrolled'); + } else { + navbar.classList.remove('navbar-scrolled'); + } + }); + } + + // Smooth scroll for anchor links + document.querySelectorAll('a[href^="#"]').forEach(anchor => { + anchor.addEventListener('click', function (e) { + e.preventDefault(); + const targetId = this.getAttribute('href'); + const targetElement = document.querySelector(targetId); + if(targetElement){ + targetElement.scrollIntoView({ behavior: 'smooth' }); + } + }); + }); + + // Client-side form validation + const contactForm = document.getElementById('contactForm'); + if(contactForm) { + contactForm.addEventListener('submit', function (event) { + if (!contactForm.checkValidity()) { + event.preventDefault(); + event.stopPropagation(); + } + contactForm.classList.add('was-validated'); + }, false); + } +}); diff --git a/index.php b/index.php index e13ae95..3076fb5 100644 --- a/index.php +++ b/index.php @@ -1,131 +1,266 @@ - - + - - - New Style - - - - + + + EventFlow - Effortless Event Management + + + + + + -
-
-

Analyzing your requirements and generating your website…

-
- Loading… -
-

Flatlogic AI is collecting your requirements and applying the first changes.

-

This page will update automatically as the plan is implemented.

-

Runtime: PHP — UTC

-
-
- + + +
+ +
+ +
+ +
+
+
+
+

UPDATED

+

Your all-in-one solution to plan, manage, and execute flawless events. From small gatherings to large corporate affairs.

+ Get Started Free + See a Demo +
+
+
+
+ + +
+
+
+
+
+ +

Venue Management

+

Keep an eye on all available event spaces, including their size, special features, and availability.

+
+
+
+
+ +

Vendor Coordination

+

Organize your go-to caterers, decorators, and entertainers with all their info and ratings in one place.

+
+
+
+
+ +

Guest & Schedule Tracking

+

Manage guest lists, RSVPs, dietary needs, and event timelines from a single, easy-to-use dashboard.

+
+
+
+
+
+ + +
+
+
+
+ A clean, modern dashboard interface for event management. +
+
+

All Your Tools in One Dashboard

+

Stop juggling spreadsheets, emails, and notes. EventFlow brings every aspect of your event planning into a single, intuitive interface.

+
+
+
+
+ + +
+
+
+
+ A visual representation of budget tracking with charts and graphs. +
+
+

Stay on Budget, Every Time

+

Our dedicated finance tools help you manage everything from initial deposits to final payments, ensuring you never lose track of your spending.

+
+
+
+
+ + +
+
+

Loved by Planners Everywhere

+
+
+
+ Customer avatar. +

"EventFlow transformed how we manage our corporate events. It's a game-changer."

+
Jane Doe, Corporate Planner
+
+
+
+
+ Customer avatar. +

"The vendor and guest management features saved me countless hours. Highly recommended!"

+
John Smith, Wedding Coordinator
+
+
+
+
+ Customer avatar. +

"Finally, a tool that understands the complexities of event planning. Simple and powerful."

+
Sam Wilson, Freelance Organizer
+
+
+
+
+
+ + +
+
+

Frequently Asked Questions

+
+
+

+ +

+
+
+ Yes! We offer a 14-day free trial with full access to all features. No credit card required. +
+
+
+
+

+ +

+
+
+ We offer 24/7 email support and dedicated account managers for our enterprise clients. +
+
+
+
+

+ +

+
+
+ Absolutely. You can easily import guest lists, vendor contacts, and schedules from CSV files. +
+
+
+
+
+
+ + +
+
+
+
+

Get Started with EventFlow

+

Sign up today and see how easy event management can be.

+
+
+ + +
Please enter your name.
+
+
+ + +
Please enter a valid email address.
+
+
+ + +
Please enter a message.
+
+ +
+
+
+
+
+
+ + + + + + + + - + \ No newline at end of file