33763-dev/index.php
2025-08-31 09:55:15 +00:00

186 lines
7.3 KiB
PHP

<?php
declare(strict_types=1);
@ini_set('display_errors', '1');
@error_reporting(E_ALL);
@date_default_timezone_set('UTC');
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>MarketingSuite - AI-Powered Digital Marketing</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/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=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet">
<style>
:root {
--primary-color: #6a11cb;
--secondary-color: #2575fc;
--text-color: #333;
--light-gray: #f8f9fa;
}
body {
font-family: 'Poppins', sans-serif;
color: var(--text-color);
}
.navbar-brand {
font-weight: 700;
color: var(--primary-color) !important;
}
.hero {
background: linear-gradient(45deg, rgba(106, 17, 203, 0.8), rgba(37, 117, 252, 0.8)), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?q=80&w=1920&auto=format&fit=crop') no-repeat center center;
background-size: cover;
color: white;
padding: 180px 0;
text-align: center;
position: relative;
overflow: hidden;
}
.hero h1 {
font-size: 4.5rem;
font-weight: 700;
animation: fadeInDown 1s;
}
.hero p {
font-size: 1.6rem;
animation: fadeInUp 1s;
}
.hero .btn {
animation: fadeInUp 1s;
}
.feature-icon {
font-size: 3.5rem;
color: var(--primary-color);
transition: transform 0.3s;
}
.feature-icon:hover {
transform: scale(1.2);
}
#features h3 {
font-weight: 600;
}
.testimonial {
background-color: var(--light-gray);
}
.testimonial .card {
border: none;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-primary {
background-color: var(--primary-color);
border-color: var(--primary-color);
padding: 12px 30px;
font-weight: 600;
transition: background-color 0.3s, transform 0.3s;
}
.btn-primary:hover {
background-color: var(--secondary-color);
border-color: var(--secondary-color);
transform: translateY(-2px);
}
@keyframes fadeInDown {
from { opacity: 0; transform: translateY(-20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light shadow-sm">
<div class="container">
<a class="navbar-brand" href="#" style="font-weight: 700; color: #6a11cb;">MarketingSuite</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<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="login.php">Login</a>
</li>
<li class="nav-item">
<a class="btn btn-primary" href="register.php" role="button">Get Started</a>
</li>
</ul>
</div>
</div>
</nav>
<header class="hero">
<div class="container">
<h1 class="display-3">Supercharge Your Marketing with AI</h1>
<p class="lead">The all-in-one platform to generate content, build websites, and drive growth.</p>
<a href="register.php" class="btn btn-primary btn-lg mt-3">Sign Up for Free</a>
</div>
</header>
<section id="features" class="py-5">
<div class="container text-center">
<h2 class="mb-5">Everything You Need to Succeed</h2>
<div class="row">
<div class="col-md-4">
<div class="feature-icon mb-3">
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="currentColor" class="bi bi-magic" viewBox="0 0 16 16">
<path d="M9.5 2.672a.5.5 0 1 0 1 0V.672a.5.5 0 0 0-1 0zM11.293.293a.5.5 0 0 0-.707.707L12.293 2.707a.5.5 0 0 0 .707-.707zM1.5 11.672a.5.5 0 1 0 1 0v2a.5.5 0 0 0-1 0zm1.707 1.707a.5.5 0 0 0-.707-.707L.793 14.293a.5.5 0 0 0 .707.707zM6 0.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1zM.5 6a.5.5 0 0 0 1 0V2a.5.5 0 0 0-1 0zm11.293 9.293a.5.5 0 0 0-.707.707l1.707 1.707a.5.5 0 0 0 .707-.707zM1.5 2.672a.5.5 0 1 0 1 0V.672a.5.5 0 0 0-1 0z"/>
<path d="M6.5 3A.5.5 0 0 1 6 3.5V12h3.5a.5.5 0 0 1 0 1H6v1.5a.5.5 0 0 1-1 0V13H1.5a.5.5 0 0 1 0-1H5V3.5A.5.5 0 0 1 6.5 3"/>
<path d="M8.5 4.5a.5.5 0 0 0-1 0v3h-3a.5.5 0 0 0 0 1h3v3a.5.5 0 0 0 1 0v-3h3a.5.5 0 0 0 0-1h-3z"/>
</svg>
</div>
<h3>AI Post Generator</h3>
<p>Effortlessly create engaging social media content and overcome writer's block.</p>
</div>
<div class="col-md-4">
<div class="feature-icon mb-3">
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="currentColor" class="bi bi-layout-text-window-reverse" viewBox="0 0 16 16">
<path d="M13 6.5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 .5-.5m0 3a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 .5-.5m.5 2.5a.5.5 0 0 1-.5.5h-5a.5.5 0 0 1 0-1h5a.5.5 0 0 1 .5.5"/>
<path d="M14 0a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2zM2 1a1 1 0 0 0-1 1v1h14V2a1 1 0 0 0-1-1zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4z"/>
</svg>
</div>
<h3>AI Website Builder</h3>
<p>Instantly build a professional, mobile-friendly website for your business.</p>
</div>
<div class="col-md-4">
<div class="feature-icon mb-3">
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="currentColor" class="bi bi-bar-chart-line-fill" viewBox="0 0 16 16">
<path d="M11 2a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v12h.5a.5.5 0 0 1 0 1H.5a.5.5 0 0 1 0-1H1v-3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v3h1V7a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v7h1z"/>
</svg>
</div>
<h3>Analytics & Insights</h3>
<p>Track your growth and make data-driven decisions with a powerful analytics dashboard.</p>
</div>
</div>
</div>
</section>
<section id="testimonials" class="py-5 testimonial">
<div class="container">
<h2 class="text-center mb-5">Loved by Businesses Worldwide</h2>
<div class="row">
<div class="col-md-6 offset-md-3">
<div class="card text-center">
<div class="card-body">
<p class="lead">"This platform has been a game-changer for our marketing efforts. We're saving hours every week and our engagement has skyrocketed."</p>
</div>
<div class="card-footer text-muted">
- Sarah L., Founder of a Small Business
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="py-4 bg-dark text-white text-center">
<div class="container">
<p class="mb-0">&copy; <?= date('Y') ?> MarketingSuite. All Rights Reserved.</p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>