34154-vm/index.php
2025-09-17 14:46:11 +00:00

140 lines
6.8 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MagiCV &mdash; Where a bit of magic meets your career story</title>
<meta name="description" content="MagiCV is a magically simple CV/Resume generator with live-preview templates, AI text assistance and one-click export.">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<!-- Google Fonts -->
<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=Inter:wght@400;500;600&family=Poppins:wght@600;700&display=swap" rel="stylesheet">
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="MagiCV &mdash; Magically Simple CVs">
<meta property="og:description" content="Create a professional CV in minutes with our live-preview templates and AI assistance.">
<meta property="og:image" content="https://picsum.photos/seed/magicv-og/1200/630">
<meta property="og:url" content="">
<meta property="og:type" content="website">
</head>
<body>
<!-- Header -->
<header>
<nav class="navbar navbar-expand-lg fixed-top">
<div class="container">
<a class="navbar-brand" href="#"> MagiCV</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 align-items-center">
<li class="nav-item"><a class="nav-link" href="#templates">Templates</a></li>
<li class="nav-item"><a class="nav-link" href="#pricing">Pricing</a></li>
<li class="nav-item"><a class="nav-link" href="#login">Login</a></li>
<li class="nav-item ms-lg-2 mt-2 mt-lg-0">
<a class="btn btn-primary" href="create.php">Create My CV</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<h1 class="mb-3">MagiCV where a bit of magic meets your career story</h1>
<p class="lead mb-4">Create a professional CV in minutes. Our magically simple generator features live-preview templates, AI text assistance, and one-click export.</p>
<a href="create.php" class="btn btn-primary btn-lg px-4 me-sm-3">Start Building for Free</a>
<a href="#templates" class="btn btn-outline-secondary btn-lg px-4">See Templates</a>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-5">
<div class="container py-5">
<h2 class="text-center section-title">Why You'll Love MagiCV</h2>
<div class="row text-center g-4">
<div class="col-lg-4 col-md-6">
<div class="card p-4 h-100">
<div class="feature-icon">
<i data-feather="layout"></i>
</div>
<h3 class="h5">Live Preview</h3>
<p>See your changes in real-time as you type. No more guessing how your final CV will look.</p>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="card p-4 h-100">
<div class="feature-icon">
<i data-feather="zap"></i>
</div>
<h3 class="h5">AI Assistance</h3>
<p>Stuck on what to write? Our AI helps you craft compelling bullet points that get you noticed.</p>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="card p-4 h-100">
<div class="feature-icon">
<i data-feather="arrow-down-circle"></i>
</div>
<h3 class="h5">One-Click Export</h3>
<p>Export your finished CV to PDF with a single click, perfectly formatted and ready to send.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Showcase Section -->
<section id="showcase" class="py-5 bg-white">
<div class="container">
<div class="row align-items-center g-5">
<div class="col-lg-6">
<h2 class="section-title mb-4">Impress with Professionalism</h2>
<p class="lead mb-4">Choose from a library of beautiful, recruiter-approved templates. From minimal and modern to classic and elegant, find the perfect style to tell your story.</p>
</div>
<div class="col-lg-6">
<img src="assets/pasted-20250917-144228-792440ea.jpg" class="img-fluid rounded-3" alt="Cartoon illustration of a person in glasses holding a CV and notepads.">
</div>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="py-4 mt-5">
<div class="container text-center">
<p class="mb-0 text-muted">&copy; <?php echo date("Y"); ?> MagiCV. All Rights Reserved.</p>
</div>
</footer>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<!-- Feather Icons -->
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script>
feather.replace()
</script>
<!-- Custom JS -->
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
</body>
</html>