Files
docupulse/templates/public/press.html
2025-06-24 09:32:50 +02:00

452 lines
17 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Press - DocuPulse</title>
<meta name="description" content="Press releases, media kit, and company information for journalists and media professionals covering DocuPulse.">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="stylesheet" href="{{ url_for('static', filename='css/colors.css') }}?v={{ 'css/colors.css'|asset_version }}">
<style>
.press-section {
padding: 80px 0;
}
.press-release {
background: var(--white);
border-radius: 15px;
padding: 30px;
box-shadow: 0 10px 25px var(--shadow-color);
transition: transform 0.3s ease;
border: none;
margin-bottom: 20px;
}
.press-release:hover {
transform: translateY(-5px);
}
.press-date {
color: var(--text-muted);
font-size: 0.9rem;
margin-bottom: 10px;
}
.press-tag {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
color: white;
padding: 4px 12px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
display: inline-block;
margin-right: 10px;
margin-bottom: 10px;
}
.media-kit-card {
background: var(--white);
border-radius: 20px;
padding: 40px;
box-shadow: 0 15px 35px var(--shadow-color);
height: 100%;
border: none;
transition: transform 0.3s ease;
text-align: center;
}
.media-kit-card:hover {
transform: translateY(-5px);
}
.media-kit-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 25px;
color: white;
font-size: 2rem;
}
.company-info {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
color: white;
padding: 60px 0;
position: relative;
overflow: hidden;
}
.company-info::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
opacity: 0.3;
}
.info-item {
text-align: center;
position: relative;
z-index: 1;
margin-bottom: 30px;
}
.info-icon {
width: 60px;
height: 60px;
background: rgba(255, 255, 255, 0.2);
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
color: white;
font-size: 1.5rem;
}
.contact-form {
background: var(--white);
border-radius: 20px;
padding: 40px;
box-shadow: 0 15px 35px var(--shadow-color);
}
.form-control {
border-radius: 10px;
border: 2px solid var(--border-color);
padding: 12px 15px;
}
.form-control:focus {
border-color: var(--primary-color);
box-shadow: 0 0 0 0.2rem var(--primary-opacity-15);
}
.gradient-text {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.logo-showcase {
background: var(--white);
border-radius: 20px;
padding: 40px;
box-shadow: 0 15px 35px var(--shadow-color);
text-align: center;
}
.logo-placeholder {
width: 200px;
height: 100px;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
color: white;
font-size: 1.5rem;
font-weight: bold;
}
.stats-section {
background-color: var(--bg-color);
padding: 60px 0;
}
.stat-item {
text-align: center;
margin-bottom: 30px;
}
.stat-number {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 10px;
display: block;
}
.stat-label {
font-size: 1rem;
color: var(--text-muted);
}
.download-btn {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
border: none;
border-radius: 10px;
padding: 12px 25px;
color: white;
font-weight: 600;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
}
.download-btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px var(--primary-opacity-15);
color: white;
}
</style>
</head>
<body>
{% include 'components/header_nav.html' %}
<!-- Hero Section -->
{% with
title="Press & Media",
description="Press releases, media kit, and company information for journalists and media professionals.",
title_size="4",
description_size="5"
%}
{% include 'components/hero_section.html' %}
{% endwith %}
<!-- Company Stats -->
<section class="stats-section">
<div class="container">
<div class="row text-center">
<div class="col-md-3">
<div class="stat-item">
<span class="stat-number" data-value="75" data-suffix="+">75+</span>
<div class="stat-label">Enterprise Clients</div>
</div>
</div>
<div class="col-md-3">
<div class="stat-item">
<span class="stat-number" data-value="1000" data-suffix="K+">1000+</span>
<div class="stat-label">Active Users</div>
</div>
</div>
<div class="col-md-3">
<div class="stat-item">
<span class="stat-number" data-value="1.1" data-suffix="M" data-prefix="$">$1.1M</span>
<div class="stat-label">Annual Revenue</div>
</div>
</div>
<div class="col-md-3">
<div class="stat-item">
<span class="stat-number" data-value="15" data-suffix="+">15+</span>
<div class="stat-label">Countries Served</div>
</div>
</div>
</div>
</div>
</section>
<!-- Media Kit -->
<section class="press-section">
<div class="container">
<div class="text-center mb-5">
<h2 class="display-5 fw-bold mb-3">Media Kit</h2>
<p class="lead text-muted">Download our official media assets and company information</p>
</div>
<div class="row g-4">
<div class="col-lg-4">
<div class="media-kit-card">
<div class="media-kit-icon">
<i class="fas fa-image"></i>
</div>
<h4 class="fw-bold mb-3">Logos & Brand Assets</h4>
<p class="text-muted mb-4">High-resolution logos, brand guidelines, and visual assets for media use.</p>
<a href="#" class="download-btn">
<i class="fas fa-download me-2"></i>Download Assets
</a>
</div>
</div>
<div class="col-lg-4">
<div class="media-kit-card">
<div class="media-kit-icon">
<i class="fas fa-file-alt"></i>
</div>
<h4 class="fw-bold mb-3">Company Fact Sheet</h4>
<p class="text-muted mb-4">Key facts, statistics, and company information for press coverage.</p>
<a href="#" class="download-btn">
<i class="fas fa-download me-2"></i>Download Fact Sheet
</a>
</div>
</div>
<div class="col-lg-4">
<div class="media-kit-card">
<div class="media-kit-icon">
<i class="fas fa-camera"></i>
</div>
<h4 class="fw-bold mb-3">Product Screenshots</h4>
<p class="text-muted mb-4">High-quality screenshots and product images for media use.</p>
<a href="#" class="download-btn">
<i class="fas fa-download me-2"></i>Download Images
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Company Information -->
<section class="company-info">
<div class="container">
<div class="text-center mb-5">
<h2 class="display-5 fw-bold mb-3">Company Information</h2>
<p class="lead">Essential information for journalists and media professionals</p>
</div>
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="info-item">
<div class="info-icon">
<i class="fas fa-building"></i>
</div>
<h5 class="fw-bold">Founded</h5>
<p class="opacity-75">1991</p>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="info-item">
<div class="info-icon">
<i class="fas fa-map-marker-alt"></i>
</div>
<h5 class="fw-bold">Headquarters</h5>
<p class="opacity-75">Vilvoorde, Belgium</p>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="info-item">
<div class="info-icon">
<i class="fas fa-users"></i>
</div>
<h5 class="fw-bold">Employees</h5>
<p class="opacity-75">15+</p>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="info-item">
<div class="info-icon">
<i class="fas fa-globe"></i>
</div>
<h5 class="fw-bold">Global Presence</h5>
<p class="opacity-75">15+ Countries</p>
</div>
</div>
</div>
</div>
</section>
<!-- Logo Showcase -->
<section class="press-section" style="background-color: var(--bg-color);">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="logo-showcase">
<h3 class="fw-bold mb-4">Our Logo</h3>
<div class="logo-placeholder">
DocuPulse
</div>
<p class="text-muted mb-4">Download our logo in various formats and sizes for media use. Please follow our brand guidelines when using the DocuPulse logo.</p>
<div class="d-flex justify-content-center gap-3 flex-wrap">
<a href="#" class="download-btn">
<i class="fas fa-download me-2"></i>PNG Format
</a>
<a href="#" class="download-btn">
<i class="fas fa-download me-2"></i>SVG Format
</a>
<a href="#" class="download-btn">
<i class="fas fa-download me-2"></i>Brand Guidelines
</a>
</div>
</div>
</div>
</div>
</div>
</section>
{% include 'components/footer_nav.html' %}
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script>
// Function to animate number counting
function animateNumber(element, endValue, suffix = '', prefix = '', duration = 2000) {
const start = performance.now();
const startValue = 0;
const difference = endValue - startValue;
function updateNumber(currentTime) {
const elapsed = currentTime - start;
const progress = Math.min(elapsed / duration, 1);
// Easing function for smooth animation
const easeOutQuart = 1 - Math.pow(1 - progress, 4);
const currentValue = startValue + (difference * easeOutQuart);
// Format the number based on the suffix and prefix
let displayValue;
if (suffix === 'K+') {
displayValue = Math.round(currentValue) + suffix;
} else if (suffix === 'M') {
displayValue = prefix + Math.round(currentValue) + suffix;
} else if (suffix === '+') {
displayValue = Math.round(currentValue) + suffix;
} else {
displayValue = Math.round(currentValue) + (suffix || '');
}
element.textContent = displayValue;
if (progress < 1) {
requestAnimationFrame(updateNumber);
} else {
// Ensure the final value is correct
if (suffix === 'M') {
element.textContent = prefix + element.getAttribute('data-value') + suffix;
} else {
element.textContent = element.getAttribute('data-value') + (suffix || '');
}
}
}
requestAnimationFrame(updateNumber);
}
// Initialize animated numbers when component is loaded
document.addEventListener('DOMContentLoaded', function() {
const statsObserver = new IntersectionObserver(function(entries) {
entries.forEach(entry => {
if (entry.isIntersecting) {
const statNumbers = entry.target.querySelectorAll('.stat-number');
statNumbers.forEach((stat, index) => {
setTimeout(() => {
const value = parseFloat(stat.getAttribute('data-value'));
const suffix = stat.getAttribute('data-suffix') || '';
const prefix = stat.getAttribute('data-prefix') || '';
if (!isNaN(value)) {
animateNumber(stat, value, suffix, prefix, 2000);
}
}, index * 300); // Stagger the animations
});
// Only trigger once
statsObserver.unobserve(entry.target);
}
});
}, { threshold: 0.5 });
// Observe the stats section
const statsSection = document.querySelector('.stats-section');
if (statsSection) {
statsObserver.observe(statsSection);
}
});
</script>
</body>
</html>