better features and pricing
This commit is contained in:
@@ -11,23 +11,41 @@
|
||||
<style>
|
||||
.feature-section {
|
||||
padding: 80px 0;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
.feature-card {
|
||||
background: var(--white);
|
||||
border-radius: 15px;
|
||||
border-radius: 20px;
|
||||
padding: 40px 30px;
|
||||
box-shadow: 0 5px 15px var(--shadow-color);
|
||||
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
||||
box-shadow: 0 10px 30px var(--shadow-color);
|
||||
transition: all 0.4s ease;
|
||||
height: 100%;
|
||||
border: none;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
.feature-card::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 4px;
|
||||
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
|
||||
transform: scaleX(0);
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
.feature-card:hover::before {
|
||||
transform: scaleX(1);
|
||||
}
|
||||
.feature-card:hover {
|
||||
transform: translateY(-5px);
|
||||
box-shadow: 0 15px 35px var(--shadow-color-light);
|
||||
transform: translateY(-10px);
|
||||
box-shadow: 0 20px 40px var(--shadow-color-light);
|
||||
}
|
||||
.feature-icon {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
@@ -35,23 +53,169 @@
|
||||
justify-content: center;
|
||||
margin: 0 auto 30px;
|
||||
color: white;
|
||||
font-size: 2rem;
|
||||
font-size: 2.2rem;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
.feature-icon::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: -5px;
|
||||
left: -5px;
|
||||
right: -5px;
|
||||
bottom: -5px;
|
||||
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
|
||||
border-radius: 50%;
|
||||
z-index: -1;
|
||||
opacity: 0.3;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
.feature-card:hover .feature-icon::after {
|
||||
transform: scale(1.2);
|
||||
opacity: 0.5;
|
||||
}
|
||||
.hero-section {
|
||||
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
|
||||
color: white;
|
||||
padding: 120px 0 80px 0;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
.hero-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;
|
||||
}
|
||||
.section-title {
|
||||
color: var(--text-dark);
|
||||
font-weight: 700;
|
||||
margin-bottom: 1rem;
|
||||
position: relative;
|
||||
}
|
||||
.section-title::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -10px;
|
||||
left: 0;
|
||||
width: 60px;
|
||||
height: 3px;
|
||||
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
|
||||
border-radius: 2px;
|
||||
}
|
||||
.section-subtitle {
|
||||
color: var(--text-muted);
|
||||
font-size: 1.1rem;
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
.visual-guide-placeholder {
|
||||
border-radius: 20px;
|
||||
padding: 40px;
|
||||
text-align: center;
|
||||
min-height: 350px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 15px 35px var(--shadow-color);
|
||||
}
|
||||
.visual-guide-placeholder::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
|
||||
transform: translateX(-100%);
|
||||
transition: transform 0.6s ease;
|
||||
}
|
||||
.visual-guide-placeholder:hover::before {
|
||||
transform: translateX(100%);
|
||||
}
|
||||
.feature-highlight {
|
||||
background: linear-gradient(135deg, var(--primary-bg-light) 0%, var(--secondary-bg-light) 100%);
|
||||
border-radius: 25px;
|
||||
padding: 60px 40px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
.feature-highlight::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: -50%;
|
||||
right: -50%;
|
||||
width: 200%;
|
||||
height: 200%;
|
||||
background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
|
||||
animation: float 6s ease-in-out infinite;
|
||||
}
|
||||
@keyframes float {
|
||||
0%, 100% { transform: translateY(0px) rotate(0deg); }
|
||||
50% { transform: translateY(-20px) rotate(180deg); }
|
||||
}
|
||||
.staggered-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 30px;
|
||||
margin-top: 50px;
|
||||
}
|
||||
.staggered-item:nth-child(odd) {
|
||||
transform: translateY(30px);
|
||||
}
|
||||
.floating-elements {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
pointer-events: none;
|
||||
overflow: hidden;
|
||||
}
|
||||
.floating-element {
|
||||
position: absolute;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
|
||||
border-radius: 50%;
|
||||
opacity: 0.1;
|
||||
animation: float-around 8s ease-in-out infinite;
|
||||
}
|
||||
.floating-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
|
||||
.floating-element:nth-child(2) { top: 60%; right: 15%; animation-delay: 2s; }
|
||||
.floating-element:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 4s; }
|
||||
@keyframes float-around {
|
||||
0%, 100% { transform: translate(0, 0) rotate(0deg); }
|
||||
25% { transform: translate(20px, -20px) rotate(90deg); }
|
||||
50% { transform: translate(-10px, -40px) rotate(180deg); }
|
||||
75% { transform: translate(-30px, -10px) rotate(270deg); }
|
||||
}
|
||||
.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;
|
||||
}
|
||||
.feature-badge {
|
||||
position: absolute;
|
||||
top: -15px;
|
||||
right: 20px;
|
||||
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
|
||||
color: white;
|
||||
padding: 8px 16px;
|
||||
border-radius: 20px;
|
||||
font-size: 0.8rem;
|
||||
font-weight: 600;
|
||||
transform: rotate(3deg);
|
||||
}
|
||||
.additional-features .section-title::after {
|
||||
display: none;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
@@ -59,142 +223,170 @@
|
||||
|
||||
<!-- Hero Section -->
|
||||
<section class="hero-section">
|
||||
<div class="container text-center">
|
||||
<div class="floating-elements">
|
||||
<div class="floating-element"></div>
|
||||
<div class="floating-element"></div>
|
||||
<div class="floating-element"></div>
|
||||
</div>
|
||||
<div class="container text-center position-relative">
|
||||
<h1 class="display-4 fw-bold mb-4">Powerful Features for Modern Enterprises</h1>
|
||||
<p class="lead fs-5">Discover how DocuPulse transforms document management with intelligent workflows, secure collaboration, and scalable architecture.</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Core Features -->
|
||||
<!-- Room-Based Workspaces Feature -->
|
||||
<section class="feature-section">
|
||||
<div class="container">
|
||||
<div class="text-center mb-5">
|
||||
<h2 class="section-title">Core Features</h2>
|
||||
<p class="section-subtitle">Everything you need to manage documents efficiently and securely</p>
|
||||
</div>
|
||||
<div class="row g-4">
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">
|
||||
<i class="fas fa-door-open"></i>
|
||||
</div>
|
||||
<h3 class="h5 fw-bold mb-3">Room-Based Workspaces</h3>
|
||||
<p class="text-muted">Create isolated collaboration environments with granular permissions, file storage, and real-time messaging for teams and projects.</p>
|
||||
<ul class="list-unstyled mt-3">
|
||||
<li><i class="fas fa-check text-success me-2"></i>Isolated team spaces</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Granular permissions</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Project organization</li>
|
||||
<div class="row align-items-center">
|
||||
<div class="col-lg-6">
|
||||
<div class="feature-highlight">
|
||||
<h2 class="section-title gradient-text">Room-Based Workspaces</h2>
|
||||
<p class="section-subtitle">Create isolated collaboration environments with granular permissions, file storage, and real-time messaging for teams and projects.</p>
|
||||
<ul class="list-unstyled">
|
||||
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Isolated team spaces for each project</li>
|
||||
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Granular permissions and access controls</li>
|
||||
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Integrated file storage and messaging</li>
|
||||
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Real-time collaboration tools</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">
|
||||
<i class="fas fa-comments"></i>
|
||||
<div class="col-lg-6">
|
||||
<div class="visual-guide-placeholder" style="background: var(--bg-color);">
|
||||
<div>
|
||||
<i class="fas fa-image fa-4x text-muted mb-3"></i>
|
||||
<p class="text-muted fw-bold">Visual Guide: Room Workspace Interface</p>
|
||||
<small class="text-muted">Screenshot or demo of room creation and management</small>
|
||||
</div>
|
||||
<h3 class="h5 fw-bold mb-3">Real-Time Messaging</h3>
|
||||
<p class="text-muted">Advanced chat system with file attachments, member management, conversation history, and instant notifications.</p>
|
||||
<ul class="list-unstyled mt-3">
|
||||
<li><i class="fas fa-check text-success me-2"></i>File attachments</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Member management</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Conversation history</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">
|
||||
<i class="fas fa-folder-tree"></i>
|
||||
</div>
|
||||
<h3 class="h5 fw-bold mb-3">Advanced File Management</h3>
|
||||
<p class="text-muted">Upload, organize, search, and manage files with hierarchical folders, version control, and comprehensive metadata tracking.</p>
|
||||
<ul class="list-unstyled mt-3">
|
||||
<li><i class="fas fa-check text-success me-2"></i>Hierarchical folders</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Version control</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Metadata tracking</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Security & Compliance -->
|
||||
<!-- Client Document Requests Feature -->
|
||||
<section class="feature-section" style="background-color: var(--bg-color);">
|
||||
<div class="container">
|
||||
<div class="text-center mb-5">
|
||||
<h2 class="section-title">Security & Compliance</h2>
|
||||
<p class="section-subtitle">Enterprise-grade security with comprehensive compliance features</p>
|
||||
</div>
|
||||
<div class="row g-4">
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">
|
||||
<i class="fas fa-user-shield"></i>
|
||||
</div>
|
||||
<h3 class="h5 fw-bold mb-3">Role-Based Security</h3>
|
||||
<p class="text-muted">Granular permission system with user roles, access controls, and comprehensive audit logging for security compliance.</p>
|
||||
<ul class="list-unstyled mt-3">
|
||||
<li><i class="fas fa-check text-success me-2"></i>User roles & permissions</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Access controls</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Audit logging</li>
|
||||
<div class="row align-items-center">
|
||||
<div class="col-lg-6 order-lg-2">
|
||||
<div class="feature-highlight">
|
||||
<h2 class="section-title gradient-text">Client Document Requests</h2>
|
||||
<p class="section-subtitle">Streamlined communication system for requesting documents from clients with file attachments and conversation tracking.</p>
|
||||
<ul class="list-unstyled">
|
||||
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Document request workflows</li>
|
||||
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Conversation tracking and history</li>
|
||||
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>File attachments and sharing</li>
|
||||
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Status tracking and notifications</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">
|
||||
<i class="fas fa-lock"></i>
|
||||
<div class="col-lg-6 order-lg-1">
|
||||
<div class="visual-guide-placeholder" style="background: var(--white);">
|
||||
<div>
|
||||
<i class="fas fa-image fa-4x text-muted mb-3"></i>
|
||||
<p class="text-muted fw-bold">Visual Guide: Document Request Flow</p>
|
||||
<small class="text-muted">Workflow diagram or interface screenshot</small>
|
||||
</div>
|
||||
<h3 class="h5 fw-bold mb-3">Data Protection</h3>
|
||||
<p class="text-muted">End-to-end encryption, secure file storage, and comprehensive data protection measures to keep your information safe.</p>
|
||||
<ul class="list-unstyled mt-3">
|
||||
<li><i class="fas fa-check text-success me-2"></i>End-to-end encryption</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Secure storage</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Data protection</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">
|
||||
<i class="fas fa-shield-alt"></i>
|
||||
</div>
|
||||
<h3 class="h5 fw-bold mb-3">Compliance Ready</h3>
|
||||
<p class="text-muted">Built-in compliance features for GDPR, HIPAA, and other regulatory requirements with automated compliance reporting.</p>
|
||||
<ul class="list-unstyled mt-3">
|
||||
<li><i class="fas fa-check text-success me-2"></i>GDPR compliance</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>HIPAA ready</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Automated reporting</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Collaboration & Communication -->
|
||||
<!-- Advanced File Management Feature -->
|
||||
<section class="feature-section">
|
||||
<div class="container">
|
||||
<div class="text-center mb-5">
|
||||
<h2 class="section-title">Collaboration & Communication</h2>
|
||||
<p class="section-subtitle">Enhanced team collaboration with intelligent communication tools</p>
|
||||
</div>
|
||||
<div class="row g-4">
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">
|
||||
<i class="fas fa-bell"></i>
|
||||
</div>
|
||||
<h3 class="h5 fw-bold mb-3">Smart Notifications</h3>
|
||||
<p class="text-muted">Comprehensive notification system with customizable email templates, SMTP integration, and real-time alerts.</p>
|
||||
<ul class="list-unstyled mt-3">
|
||||
<li><i class="fas fa-check text-success me-2"></i>Customizable templates</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>SMTP integration</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Real-time alerts</li>
|
||||
<div class="row align-items-center">
|
||||
<div class="col-lg-6">
|
||||
<div class="feature-highlight">
|
||||
<h2 class="section-title gradient-text">Advanced File Management</h2>
|
||||
<p class="section-subtitle">Upload, organize, search, and manage files with hierarchical folders and comprehensive metadata tracking.</p>
|
||||
<ul class="list-unstyled">
|
||||
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Hierarchical folder structure</li>
|
||||
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Advanced search and filtering</li>
|
||||
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Metadata tracking and organization</li>
|
||||
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>File versioning and history</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<div class="visual-guide-placeholder" style="background: var(--bg-color);">
|
||||
<div>
|
||||
<i class="fas fa-image fa-4x text-muted mb-3"></i>
|
||||
<p class="text-muted fw-bold">Visual Guide: File Management Interface</p>
|
||||
<small class="text-muted">File browser and organization interface</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Security & Compliance Feature -->
|
||||
<section class="feature-section" style="background-color: var(--bg-color);">
|
||||
<div class="container">
|
||||
<div class="row align-items-center">
|
||||
<div class="col-lg-6 order-lg-2">
|
||||
<div class="feature-highlight">
|
||||
<h2 class="section-title gradient-text">Security & Compliance</h2>
|
||||
<p class="section-subtitle">Enterprise-grade security with comprehensive compliance features for data protection and regulatory requirements.</p>
|
||||
<ul class="list-unstyled">
|
||||
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Role-based access controls</li>
|
||||
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>End-to-end encryption</li>
|
||||
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>GDPR and HIPAA compliance</li>
|
||||
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Comprehensive audit logging</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6 order-lg-1">
|
||||
<div class="visual-guide-placeholder" style="background: var(--white);">
|
||||
<div>
|
||||
<i class="fas fa-image fa-4x text-muted mb-3"></i>
|
||||
<p class="text-muted fw-bold">Visual Guide: Security Dashboard</p>
|
||||
<small class="text-muted">Security settings and compliance reports</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- White Labeling Feature -->
|
||||
<section class="feature-section">
|
||||
<div class="container">
|
||||
<div class="row align-items-center">
|
||||
<div class="col-lg-6">
|
||||
<div class="feature-highlight">
|
||||
<h2 class="section-title gradient-text">White Labeling</h2>
|
||||
<p class="section-subtitle">Complete brand customization with custom logos, company colors, and personalized branding throughout the platform.</p>
|
||||
<ul class="list-unstyled">
|
||||
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Custom company logo upload</li>
|
||||
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Brand color customization</li>
|
||||
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Personalized email templates</li>
|
||||
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Complete platform rebranding</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<div class="visual-guide-placeholder" style="background: var(--bg-color);">
|
||||
<div>
|
||||
<i class="fas fa-image fa-4x text-muted mb-3"></i>
|
||||
<p class="text-muted fw-bold">Visual Guide: Brand Customization</p>
|
||||
<small class="text-muted">Logo upload and color customization interface</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Additional Features Grid -->
|
||||
<section class="feature-section additional-features" style="background-color: var(--bg-color);">
|
||||
<div class="container">
|
||||
<div class="text-center mb-5">
|
||||
<h2 class="section-title gradient-text" style="position: relative;">Additional Features</h2>
|
||||
<p class="section-subtitle">More powerful tools to enhance your document management workflow</p>
|
||||
</div>
|
||||
<div class="row g-4">
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">
|
||||
@@ -223,57 +415,17 @@
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Customization & Integration -->
|
||||
<section class="feature-section" style="background-color: var(--bg-color);">
|
||||
<div class="container">
|
||||
<div class="text-center mb-5">
|
||||
<h2 class="section-title">Customization & Integration</h2>
|
||||
<p class="section-subtitle">Flexible platform that adapts to your business needs</p>
|
||||
</div>
|
||||
<div class="row g-4">
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">
|
||||
<i class="fas fa-palette"></i>
|
||||
<i class="fas fa-bell"></i>
|
||||
</div>
|
||||
<h3 class="h5 fw-bold mb-3">Dynamic Theming</h3>
|
||||
<p class="text-muted">Customizable color system with CSS custom properties, allowing instant theme changes and brand customization.</p>
|
||||
<h3 class="h5 fw-bold mb-3">Smart Notifications</h3>
|
||||
<p class="text-muted">Comprehensive notification system with customizable email templates, SMTP integration, and real-time alerts.</p>
|
||||
<ul class="list-unstyled mt-3">
|
||||
<li><i class="fas fa-check text-success me-2"></i>Custom colors</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Brand customization</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Instant changes</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">
|
||||
<i class="fas fa-cogs"></i>
|
||||
</div>
|
||||
<h3 class="h5 fw-bold mb-3">Flexible Configuration</h3>
|
||||
<p class="text-muted">Comprehensive settings and configuration options to tailor the platform to your specific business requirements.</p>
|
||||
<ul class="list-unstyled mt-3">
|
||||
<li><i class="fas fa-check text-success me-2"></i>Custom settings</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Business requirements</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Flexible options</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">
|
||||
<i class="fas fa-chart-line"></i>
|
||||
</div>
|
||||
<h3 class="h5 fw-bold mb-3">Analytics & Insights</h3>
|
||||
<p class="text-muted">Comprehensive analytics and reporting tools to track usage, performance, and user engagement across your platform.</p>
|
||||
<ul class="list-unstyled mt-3">
|
||||
<li><i class="fas fa-check text-success me-2"></i>Usage tracking</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Performance metrics</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>User engagement</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Email templates</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>SMTP integration</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Real-time alerts</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
@@ -286,14 +438,9 @@
|
||||
<div class="container text-center">
|
||||
<h2 class="display-5 fw-bold mb-4">Ready to Get Started?</h2>
|
||||
<p class="lead text-muted mb-5">Experience the power of DocuPulse for your enterprise document management needs</p>
|
||||
<div class="d-flex justify-content-center gap-3 flex-wrap">
|
||||
<a href="{{ url_for('public.pricing') }}" class="btn btn-primary btn-lg px-5 py-3">
|
||||
<i class="fas fa-rocket me-2"></i>View Pricing
|
||||
</a>
|
||||
<a href="{{ url_for('public.contact') }}" class="btn btn-outline-primary btn-lg px-5 py-3">
|
||||
<i class="fas fa-envelope me-2"></i>Contact Sales
|
||||
</a>
|
||||
</div>
|
||||
{% with primary_url=url_for('public.pricing'), primary_icon='fas fa-rocket', primary_text='View Pricing', secondary_url=url_for('public.contact'), secondary_icon='fas fa-envelope', secondary_text='Contact Sales' %}
|
||||
{% include 'components/cta_buttons.html' %}
|
||||
{% endwith %}
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user