Better public pages style
This commit is contained in:
@@ -63,12 +63,14 @@
|
||||
{% include 'components/header_nav.html' %}
|
||||
|
||||
<!-- Hero Section -->
|
||||
<section class="hero-section">
|
||||
<div class="container text-center">
|
||||
<h1 class="display-4 fw-bold mb-4">Get in Touch</h1>
|
||||
<p class="lead fs-5">We're here to help with your enterprise document management needs</p>
|
||||
</div>
|
||||
</section>
|
||||
{% with
|
||||
title="Get in Touch",
|
||||
description="We're here to help with your enterprise document management needs",
|
||||
title_size="4",
|
||||
description_size="5"
|
||||
%}
|
||||
{% include 'components/hero_section.html' %}
|
||||
{% endwith %}
|
||||
|
||||
<!-- Contact Information -->
|
||||
<section class="contact-section">
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -51,16 +51,29 @@
|
||||
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: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
|
||||
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);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
@@ -68,12 +81,14 @@
|
||||
{% include 'components/header_nav.html' %}
|
||||
|
||||
<!-- Hero Section -->
|
||||
<section class="hero-section">
|
||||
<div class="container text-center">
|
||||
<h1 class="display-4 fw-bold mb-4">Simple, Transparent Pricing</h1>
|
||||
<p class="lead fs-5">Choose the perfect plan for your enterprise. No hidden fees, no surprises.</p>
|
||||
</div>
|
||||
</section>
|
||||
{% with
|
||||
title="Simple, Transparent Pricing",
|
||||
description="Choose the perfect plan for your enterprise. No hidden fees, no surprises.",
|
||||
title_size="4",
|
||||
description_size="5"
|
||||
%}
|
||||
{% include 'components/hero_section.html' %}
|
||||
{% endwith %}
|
||||
|
||||
<!-- Pricing Plans -->
|
||||
{% with contact_url=url_for('public.contact') %}
|
||||
|
||||
Reference in New Issue
Block a user