30893-vm/index.php
Flatlogic Bot 1332379a59 images
2025-09-22 11:43:51 +00:00

160 lines
8.7 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Creative Agency - Driving Growth Through Digital Experiences</title>
<meta name="description" content="A leading creative agency specializing in web design, development, and digital strategy to help your business grow.">
<meta name="robots" content="index, follow">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://your-domain.com/">
<meta property="og:title" content="Creative Agency - Driving Growth Through Digital Experiences">
<meta property="og:description" content="We build beautiful, functional websites and create strategies that deliver results.">
<meta property="og:image" content="https://picsum.photos/seed/og-image/1200/630">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://your-domain.com/">
<meta property="twitter:title" content="Creative Agency - Driving Growth Through Digital Experiences">
<meta property="twitter:description" content="We build beautiful, functional websites and create strategies that deliver results.">
<meta property="twitter:image" content="https://picsum.photos/seed/og-image/1200/630">
<!-- Favicon -->
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🎨</text></svg>">
<!-- Stylesheets -->
<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=Open+Sans:wght@400;600&family=Poppins:wght@600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
</head>
<body>
<!-- Toast container for notifications -->
<div id="toast-container" class="toast-container position-fixed top-0 end-0 p-3"></div>
<!-- Header -->
<nav class="navbar navbar-expand-lg navbar-light sticky-top">
<div class="container">
<a class="navbar-brand fw-bold" href="#">🎨 Agency</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="#home">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#services">Services</a></li>
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<!-- Hero Section -->
<header id="home" class="hero">
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<h1 class="display-3 mb-4">Digital Experiences That Drive Growth</h1>
<p class="lead mb-5">We are a creative agency that builds beautiful, functional websites and crafts digital strategies that deliver measurable results.</p>
<a href="#contact" class="btn btn-secondary btn-lg">Get a Free Quote</a>
</div>
</div>
</div>
</header>
<main>
<!-- Services Section -->
<section id="services" class="section">
<div class="container">
<div class="text-center mb-5">
<h2 class="display-5">Our Services</h2>
<p class="lead">We offer a complete suite of digital services.</p>
</div>
<div class="row g-4">
<!-- Service 1 -->
<div class="col-md-4">
<div class="card h-100 p-4 text-center">
<div class="mb-3"><i data-feather="layout" class="service-icon"></i></div>
<div class="card-body">
<h3 class="card-title h4">Web Design</h3>
<p class="card-text">Stunning, user-centric designs that capture your brand and engage your audience. Mobile-first and responsive.</p>
<img src="assets/images/pexels/14979020.jpg" class="img-fluid rounded mt-3" alt="A close-up of a user interface design on a tablet.">
</div>
</div>
</div>
<!-- Service 2 -->
<div class="col-md-4">
<div class="card h-100 p-4 text-center">
<div class="mb-3"><i data-feather="code" class="service-icon"></i></div>
<div class="card-body">
<h3 class="card-title h4">Web Development</h3>
<p class="card-text">Clean, scalable, and performant code. From landing pages to complex web applications, we build solutions that work.</p>
<img src="assets/images/pexels/25626512.jpg" class="img-fluid rounded mt-3" alt="Code on a computer screen representing web development.">
</div>
</div>
</div>
<!-- Service 3 -->
<div class="col-md-4">
<div class="card h-100 p-4 text-center">
<div class="mb-3"><i data-feather="trending-up" class="service-icon"></i></div>
<div class="card-body">
<h3 class="card-title h4">Digital Strategy</h3>
<p class="card-text">Data-driven strategies to boost your online presence. SEO, content marketing, and analytics to help you grow.</p>
<img src="assets/images/pexels/4515793.jpg" class="img-fluid rounded mt-3" alt="A chart showing upward trends, representing business growth.">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="section bg-light">
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto text-center">
<h2 class="display-5 mb-3">Ready to Start a Project?</h2>
<p class="lead mb-5">Let's talk about your ideas. Fill out the form below and we'll be in touch.</p>
<div class="card p-4 p-md-5">
<form action="contact.php" method="POST">
<div class="mb-3">
<input type="text" class="form-control form-control-lg" id="name" name="name" placeholder="Your Name" required>
</div>
<div class="mb-3">
<input type="email" class="form-control form-control-lg" id="email" name="email" placeholder="Your Email" required>
</div>
<div class="mb-4">
<textarea class="form-control form-control-lg" id="message" name="message" rows="5" placeholder="Tell us about your project" required></textarea>
</div>
<div class="d-grid">
<button type="submit" class="btn btn-primary btn-lg">Send Message</button>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="footer">
<div class="container text-center">
<p class="mb-0">&copy; <?php echo date("Y"); ?> Creative Agency. All Rights Reserved.</p>
</div>
</footer>
<!-- Scripts -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script>
feather.replace();
</script>
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
</body>
</html>