From 11a44f88417e3ac6a0f6c028131848f65e85d2d0 Mon Sep 17 00:00:00 2001 From: Flatlogic Bot Date: Fri, 10 Oct 2025 06:57:45 +0000 Subject: [PATCH] 0.1 --- assets/css/custom.css | 26 ++++++++++----- contact.php | 4 +-- index.php | 73 +++++++++++++++++----------------------- solution.php | 78 +++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 127 insertions(+), 54 deletions(-) create mode 100644 solution.php diff --git a/assets/css/custom.css b/assets/css/custom.css index be07517..ba41537 100644 --- a/assets/css/custom.css +++ b/assets/css/custom.css @@ -10,9 +10,17 @@ h1, h2, h3, h4, h5, h6 { font-family: 'Georgia', serif; } +h2 { + color: #D6BCFA; +} + +.section.bg-light-lilac { + background-color: #F5F1FD; +} + /* Hero Section */ .hero { - background: linear-gradient(45deg, #4F46E5, #10B981); + background: linear-gradient(45deg, #D6BCFA, #FDBA74); color: white; padding: 100px 0; } @@ -40,27 +48,27 @@ h1, h2, h3, h4, h5, h6 { /* Button Styles */ .btn-primary { - background-color: #4F46E5; - border-color: #4F46E5; + background-color: #D6BCFA; + border-color: #D6BCFA; padding: 12px 24px; border-radius: 0.5rem; } .btn-primary:hover { - background-color: #4338CA; - border-color: #4338CA; + background-color: #C0A0F8; + border-color: #C0A0F8; } .btn-secondary { - background-color: #10B981; - border-color: #10B981; + background-color: #FDBA74; + border-color: #FDBA74; padding: 12px 24px; border-radius: 0.5rem; } .btn-secondary:hover { - background-color: #059669; - border-color: #059669; + background-color: #F9A84F; + border-color: #F9A84F; } /* Contact Form */ diff --git a/contact.php b/contact.php index 1a10d1f..18aabc0 100644 --- a/contact.php +++ b/contact.php @@ -23,8 +23,8 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") { $_SESSION['success'] = "Thank you for your message. We will get back to you shortly."; // Optionally send an email notification - // require_once 'mail/MailService.php'; - // MailService::sendContactMessage($name, $email, $message); + require_once 'mail/MailService.php'; + MailService::sendContactMessage($name, $email, $message, 'vo.info.contact@gmail.com'); } catch (PDOException $e) { // In a real app, you would log this error diff --git a/index.php b/index.php index fc99edf..e7a482c 100644 --- a/index.php +++ b/index.php @@ -4,11 +4,11 @@ - Compliance AI - Your Partner in Automated Compliance - + Vision AI - Your Partner in Automated Compliance + - - + + @@ -24,17 +24,29 @@