Files
docupulse/templates/public/about.html
2025-06-23 22:42:56 +02:00

473 lines
20 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 }}">
<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;
}
.stats-section {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
color: white;
padding: 80px 0;
position: relative;
overflow: hidden;
}
.stats-section::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;
}
.stat-item {
text-align: center;
position: relative;
z-index: 1;
}
.stat-number {
font-size: 3rem;
font-weight: 700;
margin-bottom: 10px;
display: block;
}
.stat-label {
font-size: 1.1rem;
opacity: 0.9;
}
.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;
}
.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;
}
.value-card:hover {
transform: translateY(-5px);
}
.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;
}
}
</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 -->
<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">500+</span>
<div class="stat-label">Enterprise Clients</div>
</div>
</div>
<div class="col-md-3">
<div class="stat-item">
<span class="stat-number">50K+</span>
<div class="stat-label">Active Users</div>
</div>
</div>
<div class="col-md-3">
<div class="stat-item">
<span class="stat-number">99.9%</span>
<div class="stat-label">Uptime</div>
</div>
</div>
<div class="col-md-3">
<div class="stat-item">
<span class="stat-number">24/7</span>
<div class="stat-label">Support</div>
</div>
</div>
</div>
</div>
</section>
<!-- 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">SJ</div>
<h4 class="fw-bold">Sarah Johnson</h4>
<p class="text-primary fw-semibold">CEO & Co-Founder</p>
<p class="text-muted">Former VP of Engineering at TechCorp with 15+ years of experience in enterprise software.</p>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="team-member">
<div class="team-avatar">MC</div>
<h4 class="fw-bold">Michael Chen</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">AR</div>
<h4 class="fw-bold">Amanda Rodriguez</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 class="col-lg-4 col-md-6">
<div class="team-member">
<div class="team-avatar">DK</div>
<h4 class="fw-bold">David Kim</h4>
<p class="text-primary fw-semibold">VP of Engineering</p>
<p class="text-muted">Engineering leader focused on building robust, scalable systems and mentoring development teams.</p>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="team-member">
<div class="team-avatar">LW</div>
<h4 class="fw-bold">Lisa Wang</h4>
<p class="text-primary fw-semibold">VP of Sales</p>
<p class="text-muted">Sales leader with deep experience in enterprise software sales and customer success.</p>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="team-member">
<div class="team-avatar">RJ</div>
<h4 class="fw-bold">Robert Johnson</h4>
<p class="text-primary fw-semibold">VP of Marketing</p>
<p class="text-muted">Marketing strategist focused on building brand awareness and driving customer acquisition.</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>
<div class="d-flex justify-content-center gap-3 flex-wrap">
<a href="{{ url_for('public.contact') }}" class="btn btn-primary btn-lg px-5 py-3">
<i class="fas fa-envelope me-2"></i>Get in Touch
</a>
<a href="{{ url_for('public.careers') }}" class="btn btn-outline-primary btn-lg px-5 py-3">
<i class="fas fa-users me-2"></i>Join Our Team
</a>
</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>
</body>
</html>