34768-vm/index.php
Flatlogic Bot 3584573aa8 version 0
2025-10-08 16:03:18 +00:00

159 lines
8.5 KiB
PHP

<?php session_start(); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Compliance AI - Your Partner in Automated Compliance</title>
<meta name="description" content="Compliance AI offers a cutting-edge SaaS platform to automate and streamline your compliance processes. Built with Flatlogic Generator.">
<meta name="keywords" content="compliance saas, ai compliance, regulatory technology, automated compliance, risk management, policy management, compliance reporting, flatlogic generator">
<meta property="og:title" content="Compliance AI - Your Partner in Automated Compliance">
<meta property="og:description" content="Compliance AI offers a cutting-edge SaaS platform to automate and streamline your compliance processes.">
<meta property="og:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? ''); ?>">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? ''); ?>">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Georgia&family=Inter:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-light bg-light sticky-top">
<div class="container">
<a class="navbar-brand" href="#">Compliance AI</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link" href="#portfolio">Portfolio</a></li>
<li class="nav-item"><a class="nav-link" href="#testimonials">Testimonials</a></li>
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
<li class="nav-item"><a class="nav-link" href="/privacy.php">Privacy</a></li>
</ul>
</div>
</div>
</nav>
<!-- Hero Section -->
<header class="hero text-center">
<div class="container">
<h1>Automate Your Compliance. Unleash Your Growth.</h1>
<p class="lead my-4">The intelligent platform that simplifies compliance, so you can focus on what matters.</p>
<a href="#contact" class="btn btn-light btn-lg">Request a Demo</a>
</div>
</header>
<!-- About Section -->
<section id="about" class="section">
<div class="container text-center">
<h2>About Compliance AI</h2>
<p class="lead">We are a team of experts dedicated to simplifying regulatory compliance through the power of artificial intelligence. Our platform helps you navigate the complex landscape of rules and regulations with ease.</p>
</div>
</section>
<!-- Portfolio Section -->
<section id="portfolio" class="section bg-white">
<div class="container">
<h2 class="text-center mb-5">See Our Platform in Action</h2>
<div class="row g-4">
<div class="col-md-6">
<div class="card">
<img src="https://picsum.photos/seed/p1/800/600" class="card-img-top" alt="Dashboard showing compliance metrics.">
<div class="card-body">
<h5 class="card-title">Intuitive Dashboards</h5>
<p class="card-text">Visualize your compliance posture at a glance with our clean and informative dashboards.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card">
<img src="https://picsum.photos/seed/p2/800/600" class="card-img-top" alt="Automated reporting feature.">
<div class="card-body">
<h5 class="card-title">Automated Reporting</h5>
<p class="card-text">Generate comprehensive compliance reports automatically, saving you time and effort.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials" class="section">
<div class="container">
<h2 class="text-center mb-5">What Our Clients Say</h2>
<div class="row">
<div class="col-md-4">
<div class="card p-4 text-center">
<p>"Compliance AI has transformed how we handle regulatory requirements. It's a game-changer."</p>
<footer class="blockquote-footer mt-2">Jane Doe, CEO at TechCorp</footer>
</div>
</div>
<div class="col-md-4">
<div class="card p-4 text-center">
<p>"The platform is incredibly user-friendly and the support team is top-notch."</p>
<footer class="blockquote-footer mt-2">John Smith, Compliance Officer at Innovate Ltd.</footer>
</div>
</div>
<div class="col-md-4">
<div class="card p-4 text-center">
<p>"We've saved countless hours on compliance tasks since implementing Compliance AI."</p>
<footer class="blockquote-footer mt-2">Sam Wilson, Founder at StartUp Co.</footer>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="section bg-white">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<h2 class="text-center mb-5">Get in Touch</h2>
<div class="contact-form">
<?php if (isset($_SESSION['success'])): ?>
<div class="alert alert-success"><?php echo $_SESSION['success']; unset($_SESSION['success']); ?></div>
<?php endif; ?>
<?php if (isset($_SESSION['error'])): ?>
<div class="alert alert-danger"><?php echo $_SESSION['error']; unset($_SESSION['error']); ?></div>
<?php endif; ?>
<form action="contact.php" method="POST">
<div class="mb-3">
<label for="name" class="form-label">Name</label>
<input type="text" class="form-control" id="name" name="name" required>
</div>
<div class="mb-3">
<label for="email" class="form-label">Email address</label>
<input type="email" class="form-control" id="email" name="email" required>
</div>
<div class="mb-3">
<label for="message" class="form-label">Message</label>
<textarea class="form-control" id="message" name="message" rows="5" required></textarea>
</div>
<button type="submit" class="btn btn-primary w-100">Send Message</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-dark text-white text-center py-4">
<div class="container">
<p>&copy; <?php echo date('Y'); ?> Compliance AI. All Rights Reserved.</p>
<p><a href="/privacy.php" class="text-white">Privacy Policy</a></p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
</body>
</html>