Files
docupulse/templates/public/about.html
2025-06-25 11:38:12 +02:00

432 lines
18 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - DocuPulse</title>
<meta name="description" content="Learn about DocuPulse - the team behind the enterprise document management platform that's transforming how businesses handle their documents.">
<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 }}">
<link rel="stylesheet" href="{{ url_for('main.dynamic_colors') }}?v={{ site_settings.updated_at.timestamp() }}" onload="console.log('[CSS] Dynamic colors loaded with version:', '{{ site_settings.updated_at.timestamp() }}')">
<style>
.about-section {
padding: 80px 0;
}
.mission-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;
}
.mission-card:hover {
transform: translateY(-5px);
}
.mission-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-bottom: 25px;
color: white;
font-size: 2rem;
}
.team-member {
text-align: center;
margin-bottom: 30px;
}
.team-avatar {
width: 120px;
height: 120px;
border-radius: 50%;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
color: white;
font-size: 3rem;
font-weight: bold;
}
.timeline {
position: relative;
padding: 40px 0;
}
.timeline::before {
content: '';
position: absolute;
left: 50%;
top: 0;
bottom: 0;
width: 2px;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
transform: translateX(-50%);
}
.timeline-item {
position: relative;
margin-bottom: 40px;
}
.timeline-item:nth-child(odd) .timeline-content {
margin-left: 0;
margin-right: 50%;
padding-right: 40px;
text-align: right;
}
.timeline-item:nth-child(even) .timeline-content {
margin-left: 50%;
margin-right: 0;
padding-left: 40px;
text-align: left;
}
.timeline-dot {
position: absolute;
left: 50%;
top: 20px;
width: 20px;
height: 20px;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
border-radius: 50%;
transform: translateX(-50%);
z-index: 2;
}
.timeline-content {
background: var(--white);
border-radius: 15px;
padding: 25px;
box-shadow: 0 5px 15px var(--shadow-color);
position: relative;
}
.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;
}
.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-top: 50px;
justify-items: center;
}
.value-card {
background: var(--white);
border-radius: 15px;
padding: 30px;
text-align: center;
box-shadow: 0 10px 25px var(--shadow-color);
transition: transform 0.3s ease;
border: none;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
}
.value-card:hover {
transform: translateY(-5px);
}
.value-card h4,
.value-card p {
text-align: center;
width: 100%;
}
.value-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
color: white;
font-size: 1.5rem;
}
@media (max-width: 768px) {
.timeline::before {
left: 20px;
}
.timeline-item:nth-child(odd) .timeline-content,
.timeline-item:nth-child(even) .timeline-content {
margin-left: 0;
margin-right: 0;
padding-left: 50px;
padding-right: 20px;
text-align: left;
}
.timeline-dot {
left: 20px;
}
}
/* Button styles to match home page */
.btn-primary {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
border: none;
border-radius: 25px;
padding: 12px 30px;
font-weight: 600;
transition: all 0.3s ease;
}
.btn-primary:hover {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
transform: translateY(-2px);
box-shadow: 0 5px 15px var(--primary-opacity-15);
filter: brightness(1.1);
}
.btn-outline-primary {
border: 2px solid var(--primary-color);
color: var(--primary-color);
border-radius: 25px;
padding: 12px 30px;
font-weight: 600;
transition: all 0.3s ease;
}
.btn-outline-primary:hover {
background: rgba(var(--primary-color-rgb), 0.05);
border-color: var(--primary-color);
color: var(--primary-color);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.1);
}
.btn-lg {
padding: 15px 40px;
font-size: 1.1rem;
}
</style>
</head>
<body>
{% include 'components/header_nav.html' %}
<!-- Hero Section -->
{% with
title="About DocuPulse",
description="We're building the future of enterprise document management, one secure collaboration at a time.",
title_size="4",
description_size="5"
%}
{% include 'components/hero_section.html' %}
{% endwith %}
<!-- Mission & Vision -->
<section class="about-section">
<div class="container">
<div class="row g-4">
<div class="col-lg-6">
<div class="mission-card">
<div class="mission-icon">
<i class="fas fa-bullseye"></i>
</div>
<h3 class="h4 fw-bold mb-3">Our Mission</h3>
<p class="text-muted">To revolutionize how enterprises manage, collaborate on, and secure their documents by providing an intuitive, scalable, and secure platform that empowers teams to work more efficiently.</p>
<p class="text-muted mb-0">We believe that document management shouldn't be a barrier to productivity, but a catalyst for innovation and growth.</p>
</div>
</div>
<div class="col-lg-6">
<div class="mission-card">
<div class="mission-icon">
<i class="fas fa-eye"></i>
</div>
<h3 class="h4 fw-bold mb-3">Our Vision</h3>
<p class="text-muted">To become the world's most trusted enterprise document management platform, setting the standard for security, collaboration, and user experience in the digital workplace.</p>
<p class="text-muted mb-0">We envision a future where document management is seamless, intelligent, and empowers every organization to achieve their full potential.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Company Stats -->
{% with stats=[
{'value': 500, 'suffix': '+', 'display': '500+', 'label': 'Enterprise Clients'},
{'value': 50, 'suffix': 'K+', 'display': '50K+', 'label': 'Active Users'},
{'value': 99.9, 'suffix': '%', 'display': '99.9%', 'label': 'Uptime'},
{'value': 24, 'suffix': '/7', 'display': '24/7', 'label': 'Support'}
] %}
{% include 'components/animated_numbers.html' %}
{% endwith %}
<!-- Our Values -->
<section class="about-section" style="background-color: var(--bg-color);">
<div class="container">
<div class="text-center mb-5">
<h2 class="display-5 fw-bold mb-3">Our Values</h2>
<p class="lead text-muted">The principles that guide everything we do</p>
</div>
<div class="values-grid">
<div class="value-card">
<div class="value-icon">
<i class="fas fa-shield-alt"></i>
</div>
<h4 class="fw-bold mb-3">Security First</h4>
<p class="text-muted">We prioritize the security and privacy of our users' data above all else, implementing enterprise-grade security measures and maintaining strict compliance standards.</p>
</div>
<div class="value-card">
<div class="value-icon">
<i class="fas fa-users"></i>
</div>
<h4 class="fw-bold mb-3">User-Centric Design</h4>
<p class="text-muted">Every feature we build is designed with the user in mind, ensuring intuitive experiences that enhance productivity rather than hinder it.</p>
</div>
<div class="value-card">
<div class="value-icon">
<i class="fas fa-rocket"></i>
</div>
<h4 class="fw-bold mb-3">Innovation</h4>
<p class="text-muted">We continuously push the boundaries of what's possible in document management, embracing new technologies and methodologies.</p>
</div>
<div class="value-card">
<div class="value-icon">
<i class="fas fa-handshake"></i>
</div>
<h4 class="fw-bold mb-3">Trust & Transparency</h4>
<p class="text-muted">We build lasting relationships with our clients through honest communication, transparent practices, and reliable service delivery.</p>
</div>
<div class="value-card">
<div class="value-icon">
<i class="fas fa-cogs"></i>
</div>
<h4 class="fw-bold mb-3">Excellence</h4>
<p class="text-muted">We strive for excellence in everything we do, from code quality to customer support, ensuring the highest standards of service.</p>
</div>
<div class="value-card">
<div class="value-icon">
<i class="fas fa-heart"></i>
</div>
<h4 class="fw-bold mb-3">Passion</h4>
<p class="text-muted">Our team is passionate about solving real-world problems and making a positive impact on how organizations work and collaborate.</p>
</div>
</div>
</div>
</section>
<!-- Our Story -->
<section class="about-section">
<div class="container">
<div class="text-center mb-5">
<h2 class="display-5 fw-bold mb-3">Our Story</h2>
<p class="lead text-muted">From startup to enterprise solution</p>
</div>
<div class="timeline">
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-content">
<h4 class="fw-bold">2020 - The Beginning</h4>
<p class="text-muted">Founded by a team of experienced developers and enterprise architects who saw the need for a better document management solution.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-content">
<h4 class="fw-bold">2021 - First Release</h4>
<p class="text-muted">Launched our first version with core document management features and room-based collaboration.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-content">
<h4 class="fw-bold">2022 - Enterprise Growth</h4>
<p class="text-muted">Expanded to serve enterprise clients with advanced security features and compliance capabilities.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-content">
<h4 class="fw-bold">2023 - Global Expansion</h4>
<p class="text-muted">Reached 500+ enterprise clients worldwide and launched advanced AI-powered features.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-content">
<h4 class="fw-bold">2024 - Innovation Leader</h4>
<p class="text-muted">Continuing to innovate with cutting-edge features and expanding our global presence.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Leadership Team -->
<section class="about-section" style="background-color: var(--bg-color);">
<div class="container">
<div class="text-center mb-5">
<h2 class="display-5 fw-bold mb-3">Leadership Team</h2>
<p class="lead text-muted">Meet the people driving our mission forward</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="team-member">
<div class="team-avatar">EW</div>
<h4 class="fw-bold">Eric Wyns</h4>
<p class="text-primary fw-semibold">CEO & Co-Founder</p>
<p class="text-muted">Discription here</p>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="team-member">
<div class="team-avatar">KA</div>
<h4 class="fw-bold">Kobe Amerijckx</h4>
<p class="text-primary fw-semibold">CTO & Co-Founder</p>
<p class="text-muted">Expert in cloud architecture and security with a background in building scalable platforms.</p>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="team-member">
<div class="team-avatar">KT</div>
<h4 class="fw-bold">Kelly Tordeur</h4>
<p class="text-primary fw-semibold">VP of Product</p>
<p class="text-muted">Product leader with experience in user experience design and enterprise software development.</p>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="about-section">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8 text-center">
<h2 class="display-5 fw-bold mb-4">Join Us in Shaping the Future</h2>
<p class="lead text-muted mb-5">Ready to experience the next generation of document management? Let's work together to transform how your organization handles documents.</p>
{% with primary_url=url_for('public.contact'), primary_icon='fas fa-envelope', primary_text='Get in Touch', secondary_url=url_for('public.careers'), secondary_icon='fas fa-users', secondary_text='Join Our Team' %}
{% include 'components/cta_buttons.html' %}
{% endwith %}
</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>
</body>
</html>