12/20/25 V.2

This commit is contained in:
Flatlogic Bot 2025-12-20 15:20:08 +00:00
parent 473e6afeab
commit fd5f4506a7
8 changed files with 399 additions and 503 deletions

View File

@ -0,0 +1,99 @@
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="ComplianceShield Pro Features - Complete construction compliance management, OSHA tracking, document management, and contractor oversight.">
<title>Features - ComplianceShield Pro</title>
<!-- Favicon -->
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🛡️</text></svg>">
<link rel="stylesheet" href="{% static 'css/custom.css' %}">
</head>
<body>
<nav>
<a href="/" class="logo">
<span class="logo-icon">🛡️</span>
ComplianceShield
</a>
<ul class="nav-links">
<li><a href="/">Home</a></li>
<li><a href="/features" class="active">Features</a></li>
<li><a href="#">Pricing</a></li>
<li><a href="#">Integrations</a></li>
<li><a href="#">About</a></li>
</ul>
<div class="nav-actions">
<a href="https://your-app.appwizzy.com" class="nav-cta">Sign In</a>
</div>
</nav>
<main class="page-header">
<div class="header-content">
<h1>All-in-One Compliance Platform</h1>
<p class="subtitle">A complete suite of tools to manage construction compliance, from team hours to OSHA standards, all in one place.</p>
</div>
</main>
<section class="features-grid">
<div class="feature-card">
<div class="feature-icon" style="background-color: var(--blue);">⏱️</div>
<h3>Time Tracking & Scheduling</h3>
<p>Monitor team hours, schedule shifts, and manage payroll with an integrated time management system.</p>
</div>
<div class="feature-card">
<div class="feature-icon" style="background-color: var(--green);">📋</div>
<h3>OSHA Compliance</h3>
<p>Automated checks and reporting to ensure your job sites meet the latest OSHA safety standards.</p>
</div>
<div class="feature-card">
<div class="feature-icon" style="background-color: var(--orange);">📂</div>
<h3>Document Management</h3>
<p>Securely store, access, and manage all your compliance documents, certifications, and reports.</p>
</div>
<div class="feature-card">
<div class="feature-icon" style="background-color: var(--red);">🤝</div>
<h3>Subcontractor Oversight</h3>
<p>Onboard and manage subcontractors, track their compliance status, and mitigate project risks.</p>
</div>
<div class="feature-card">
<div class="feature-icon" style="background-color: var(--gold-dark);">📊</div>
<h3>Real-Time Analytics</h3>
<p>Access intuitive dashboards to visualize compliance metrics and make data-driven decisions.</p>
</div>
<div class="feature-card">
<div class="feature-icon" style="background-color: var(--text-muted);">🔔</div>
<h3>Automated Alerts</h3>
<p>Receive instant notifications for expiring certifications, non-compliance events, and critical deadlines.</p>
</div>
</section>
<footer class="footer">
<div class="footer-container">
<div class="footer-about">
<h3>ComplianceShield Pro</h3>
<p>Construction compliance management, simplified.</p>
</div>
<div class="footer-links">
<h4>Company</h4>
<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<div class="footer-links">
<h4>Legal</h4>
<ul>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms of Service</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>&copy; 2025 ComplianceShield Pro. All rights reserved.</p>
</div>
</footer>
</body>
</html>

View File

@ -16,20 +16,19 @@
<body>
<nav>
<a href="#" class="logo">
<a href="/" class="logo">
<span class="logo-icon">🛡️</span>
ComplianceShield Pro
ComplianceShield
</a>
<ul class="nav-links">
<li><a href="#features">Features</a></li>
<li><a href="#pricing">Pricing</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="/">Home</a></li>
<li><a href="/features">Features</a></li>
<li><a href="#">Pricing</a></li>
<li><a href="#">Integrations</a></li>
<li><a href="#">About</a></li>
</ul>
<a href="#" class="nav-cta">Get Started</a>
<div class="mobile-menu-toggle">
<span></span>
<span></span>
<span></span>
<div class="nav-actions">
<a href="https://your-app.appwizzy.com" class="nav-cta">Sign In</a>
</div>
</nav>
@ -44,11 +43,7 @@
The all-in-one platform for construction compliance. Track time, manage documents, and ensure OSHA compliance with ease.
</p>
<div class="hero-ctas">
<a href="#" class="btn-primary">Start Free Trial</a>
<a href="#" class="btn-secondary">
<span class="play-icon"></span>
Watch Demo
</a>
<a href="https://your-app.appwizzy.com/signup" class="btn-primary">Get Started</a>
</div>
<p class="hero-note">No credit card required. Cancel anytime.</p>
</section>

View File

@ -1,7 +1,8 @@
from django.urls import path
from .views import home
from .views import index, features
urlpatterns = [
path("", home, name="home"),
path("", index, name="index"),
path("features/", features, name="features"),
]

View File

@ -6,20 +6,10 @@ from django.shortcuts import render
from django.utils import timezone
def home(request):
"""Render the landing screen with loader and environment details."""
host_name = request.get_host().lower()
agent_brand = "AppWizzy" if host_name == "appwizzy.com" else "Flatlogic"
now = timezone.now()
context = {
"project_name": "New Style",
"agent_brand": agent_brand,
"django_version": django_version(),
"python_version": platform.python_version(),
"current_time": now,
"host_name": host_name,
"project_description": os.getenv("PROJECT_DESCRIPTION", ""),
"project_image_url": os.getenv("PROJECT_IMAGE_URL", ""),
}
def index(request):
context = {}
return render(request, "core/index.html", context)
def features(request):
context = {}
return render(request, "core/features.html", context)

View File

@ -1,257 +1,213 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--gold-light: #f0d68c;
--gold-dark: #c9a55a;
--bg-dark: #0a0a0a;
--bg-card: #141414;
--text-primary: #ffffff;
--text-secondary: #a0a0a0;
--text-muted: #606060;
--border-light: rgba(255, 255, 255, 0.1);
--border-lighter: rgba(255, 255, 255, 0.05);
}
:root {
--gold-light: #f0d68c;
--gold-dark: #c9a55a;
--bg-dark: #0a0a0a;
--bg-card: #141414;
--text-primary: #ffffff;
--text-secondary: #a0a0a0;
--text-muted: #606060;
--border-light: rgba(255, 255, 255, 0.1);
--border-lighter: rgba(255, 255, 255, 0.05);
--green: #4caf50;
--orange: #ff9800;
--red: #ef4444;
--blue: #3b82f6;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
background: var(--bg-dark);
color: var(--text-primary);
overflow-x: hidden;
line-height: 1.6;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
background: var(--bg-dark);
color: var(--text-primary);
overflow-x: hidden;
line-height: 1.6;
}
/* Navigation */
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 60px;
background: rgba(10, 10, 10, 0.95);
backdrop-filter: blur(10px);
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
border-bottom: 1px solid var(--border-light);
transition: all 0.3s ease;
}
/* Navigation */
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 60px;
background: rgba(10, 10, 10, 0.95);
backdrop-filter: blur(10px);
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
border-bottom: 1px solid var(--border-light);
}
nav.scrolled {
padding: 15px 60px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.logo {
display: flex;
align-items: center;
gap: 12px;
font-size: 22px;
font-weight: 600;
color: var(--text-primary);
text-decoration: none;
}
.logo {
display: flex;
align-items: center;
gap: 12px;
font-size: 22px;
font-weight: 600;
color: var(--text-primary);
text-decoration: none;
}
.logo-icon {
width: 32px;
height: 32px;
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
}
.logo-icon {
width: 32px;
height: 32px;
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
}
.nav-links {
display: flex;
gap: 40px;
list-style: none;
}
.nav-links {
display: flex;
gap: 40px;
list-style: none;
}
.nav-links a {
color: var(--text-secondary);
text-decoration: none;
font-size: 15px;
font-weight: 500;
transition: color 0.3s;
}
.nav-links a {
color: var(--text-secondary);
text-decoration: none;
font-size: 15px;
font-weight: 500;
transition: color 0.3s;
position: relative;
}
.nav-links a:hover, .nav-links a.active {
color: var(--text-primary);
}
.nav-links a::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
transition: width 0.3s;
}
.nav-cta {
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
color: #0a0a0a;
padding: 10px 20px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s;
}
.nav-links a:hover {
color: var(--text-primary);
}
.nav-cta:hover {
box-shadow: 0 4px 15px rgba(240, 214, 140, 0.2);
}
.nav-links a:hover::after {
width: 100%;
}
.nav-actions {
display: flex;
align-items: center;
gap: 20px;
}
.nav-cta {
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
color: var(--bg-dark);
padding: 10px 24px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 15px;
transition: all 0.3s;
box-shadow: 0 4px 12px rgba(201, 165, 90, 0.3);
}
/* Feature Page Specific Styles */
.page-header {
padding: 160px 60px 80px;
text-align: center;
border-bottom: 1px solid var(--border-lighter);
}
.nav-cta:hover {
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(201, 165, 90, 0.4);
}
.header-content .subtitle {
font-size: 20px;
color: var(--text-secondary);
max-width: 700px;
margin: 0 auto;
}
/* Mobile Menu Toggle */
.mobile-menu-toggle {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
padding: 80px 60px;
max-width: 1200px;
margin: 0 auto;
}
.mobile-menu-toggle span {
width: 25px;
height: 2px;
background: var(--text-primary);
transition: all 0.3s;
}
.feature-card {
background: var(--bg-card);
border: 1px solid var(--border-lighter);
border-radius: 12px;
padding: 40px;
text-align: center;
transition: all 0.3s ease;
}
/* Hero Section */
.hero {
padding: 180px 60px 100px;
text-align: center;
position: relative;
}
.feature-card:hover {
transform: translateY(-5px);
border-color: var(--border-light);
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid var(--border-light);
padding: 8px 16px;
border-radius: 20px;
font-size: 14px;
color: var(--text-secondary);
margin-bottom: 30px;
animation: fadeInDown 0.6s ease;
}
.feature-icon {
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
margin: 0 auto 24px;
}
.hero-badge-icon {
width: 20px;
height: 20px;
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
}
.feature-card h3 {
font-size: 22px;
margin-bottom: 12px;
}
h1 {
font-size: 72px;
line-height: 1.1;
margin-bottom: 24px;
background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: fadeInUp 0.8s ease;
}
.feature-card p {
color: var(--text-secondary);
line-height: 1.7;
}
.hero-description {
font-size: 20px;
color: #808080;
max-width: 700px;
margin: 0 auto 40px;
line-height: 1.6;
animation: fadeInUp 1s ease;
}
/* Footer */
.footer {
background: var(--bg-card);
padding: 60px 60px 30px;
border-top: 1px solid var(--border-lighter);
}
.hero-ctas {
display: flex;
gap: 20px;
justify-content: center;
margin-bottom: 16px;
animation: fadeInUp 1.2s ease;
}
.footer-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
max-width: 1200px;
margin: 0 auto 40px;
}
.btn-primary {
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
color: var(--bg-dark);
padding: 16px 32px;
border-radius: 10px;
text-decoration: none;
font-weight: 600;
font-size: 16px;
transition: all 0.3s;
border: none;
cursor: pointer;
box-shadow: 0 4px 12px rgba(201, 165, 90, 0.3);
}
.footer-about h3 {
font-size: 20px;
margin-bottom: 12px;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(201, 165, 90, 0.4);
}
.footer-about p {
color: var(--text-secondary);
}
.btn-secondary {
background: rgba(255, 255, 255, 0.05);
border: 1px solid var(--border-light);
color: var(--text-primary);
padding: 16px 32px;
border-radius: 10px;
text-decoration: none;
font-weight: 500;
font-size: 16px;
display: inline-flex;
align-items: center;
gap: 8px;
transition: all 0.3s;
}
.footer-links h4 {
font-size: 16px;
font-weight: 600;
margin-bottom: 16px;
}
.btn-secondary:hover {
background: rgba(255, 255, 255, 0.1);
border-color: var(--border-light);
}
.footer-links ul {
list-style: none;
display: flex;
flex-direction: column;
gap: 12px;
}
.play-icon {
width: 20px;
height: 20px;
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 10px;
padding-left: 2px;
}
.footer-links a {
color: var(--text-secondary);
text-decoration: none;
transition: color 0.3s;
}
.hero-note {
color: var(--text-muted);
font-size: 14px;
animation: fadeInUp 1.4s ease;
}
.footer-links a:hover {
color: var(--text-primary);
}
/* Product Preview */
.product-preview {
max-width: 1200px;
margin: 80px auto 0;
}
.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid var(--border-lighter);
color: var(--text-muted);
font-size: 14px;
}

View File

@ -1,257 +1,112 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Feature Page Specific Styles */
.page-header {
padding: 160px 60px 80px;
text-align: center;
border-bottom: 1px solid var(--border-lighter);
}
:root {
--gold-light: #f0d68c;
--gold-dark: #c9a55a;
--bg-dark: #0a0a0a;
--bg-card: #141414;
--text-primary: #ffffff;
--text-secondary: #a0a0a0;
--text-muted: #606060;
--border-light: rgba(255, 255, 255, 0.1);
--border-lighter: rgba(255, 255, 255, 0.05);
}
.header-content .subtitle {
font-size: 20px;
color: var(--text-secondary);
max-width: 700px;
margin: 0 auto;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
background: var(--bg-dark);
color: var(--text-primary);
overflow-x: hidden;
line-height: 1.6;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
padding: 80px 60px;
max-width: 1200px;
margin: 0 auto;
}
/* Navigation */
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 60px;
background: rgba(10, 10, 10, 0.95);
backdrop-filter: blur(10px);
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
border-bottom: 1px solid var(--border-light);
transition: all 0.3s ease;
}
.feature-card {
background: var(--bg-card);
border: 1px solid var(--border-lighter);
border-radius: 12px;
padding: 40px;
text-align: center;
transition: all 0.3s ease;
}
nav.scrolled {
padding: 15px 60px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.feature-card:hover {
transform: translateY(-5px);
border-color: var(--border-light);
}
.logo {
display: flex;
align-items: center;
gap: 12px;
font-size: 22px;
font-weight: 600;
color: var(--text-primary);
text-decoration: none;
}
.feature-icon {
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
margin: 0 auto 24px;
}
.logo-icon {
width: 32px;
height: 32px;
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
}
.feature-card h3 {
font-size: 22px;
margin-bottom: 12px;
}
.nav-links {
display: flex;
gap: 40px;
list-style: none;
}
.feature-card p {
color: var(--text-secondary);
line-height: 1.7;
}
.nav-links a {
color: var(--text-secondary);
text-decoration: none;
font-size: 15px;
font-weight: 500;
transition: color 0.3s;
position: relative;
}
/* Footer */
.footer {
background: var(--bg-card);
padding: 60px 60px 30px;
border-top: 1px solid var(--border-lighter);
}
.nav-links a::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
transition: width 0.3s;
}
.footer-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
max-width: 1200px;
margin: 0 auto 40px;
}
.nav-links a:hover {
color: var(--text-primary);
}
.footer-about h3 {
font-size: 20px;
margin-bottom: 12px;
}
.nav-links a:hover::after {
width: 100%;
}
.footer-about p {
color: var(--text-secondary);
}
.nav-cta {
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
color: var(--bg-dark);
padding: 10px 24px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 15px;
transition: all 0.3s;
box-shadow: 0 4px 12px rgba(201, 165, 90, 0.3);
}
.footer-links h4 {
font-size: 16px;
font-weight: 600;
margin-bottom: 16px;
}
.nav-cta:hover {
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(201, 165, 90, 0.4);
}
.footer-links ul {
list-style: none;
display: flex;
flex-direction: column;
gap: 12px;
}
/* Mobile Menu Toggle */
.mobile-menu-toggle {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
}
.footer-links a {
color: var(--text-secondary);
text-decoration: none;
transition: color 0.3s;
}
.mobile-menu-toggle span {
width: 25px;
height: 2px;
background: var(--text-primary);
transition: all 0.3s;
}
.footer-links a:hover {
color: var(--text-primary);
}
/* Hero Section */
.hero {
padding: 180px 60px 100px;
text-align: center;
position: relative;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid var(--border-light);
padding: 8px 16px;
border-radius: 20px;
font-size: 14px;
color: var(--text-secondary);
margin-bottom: 30px;
animation: fadeInDown 0.6s ease;
}
.hero-badge-icon {
width: 20px;
height: 20px;
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
}
h1 {
font-size: 72px;
line-height: 1.1;
margin-bottom: 24px;
background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: fadeInUp 0.8s ease;
}
.hero-description {
font-size: 20px;
color: #808080;
max-width: 700px;
margin: 0 auto 40px;
line-height: 1.6;
animation: fadeInUp 1s ease;
}
.hero-ctas {
display: flex;
gap: 20px;
justify-content: center;
margin-bottom: 16px;
animation: fadeInUp 1.2s ease;
}
.btn-primary {
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
color: var(--bg-dark);
padding: 16px 32px;
border-radius: 10px;
text-decoration: none;
font-weight: 600;
font-size: 16px;
transition: all 0.3s;
border: none;
cursor: pointer;
box-shadow: 0 4px 12px rgba(201, 165, 90, 0.3);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(201, 165, 90, 0.4);
}
.btn-secondary {
background: rgba(255, 255, 255, 0.05);
border: 1px solid var(--border-light);
color: var(--text-primary);
padding: 16px 32px;
border-radius: 10px;
text-decoration: none;
font-weight: 500;
font-size: 16px;
display: inline-flex;
align-items: center;
gap: 8px;
transition: all 0.3s;
}
.btn-secondary:hover {
background: rgba(255, 255, 255, 0.1);
border-color: var(--border-light);
}
.play-icon {
width: 20px;
height: 20px;
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 10px;
padding-left: 2px;
}
.hero-note {
color: var(--text-muted);
font-size: 14px;
animation: fadeInUp 1.4s ease;
}
/* Product Preview */
.product-preview {
max-width: 1200px;
margin: 80px auto 0;
}
.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid var(--border-lighter);
color: var(--text-muted);
font-size: 14px;
}