Logos officiels installés : - static/images/dictia-logo.png (28 KB optimisé 256×256) - static/images/dictia-logo-128.png (10 KB retina) - static/images/dictia-logo-fullres.png (originaux conservés OG/social) - static/images/dictia-logo.svg + dictia-logo-nom.svg (cleaned C2PA metadata) - Header marketing/base.html : <img> 40×40 + wordmark "DictIA" + tagline "Transcription" - Footer marketing/_footer.html : <img> 36×36 + wordmark - Favicon mis à jour vers logo PNG Note : SVG sources sont des PNG base64 wrappés (pas de vrais paths) — PNG utilisé en production (8× plus léger), SVG conservé pour fallback. Palette canonique alignée sur le logo : - brand-b1 : #7c3aed (mauve) → #2563eb (blue-600 vibrant — primary) - brand-b2 : #a855f7 (mauve clair) → #06b6d4 (cyan-500 — aqua mid) - brand-b3 : #06b6d4 (aqua) → #c026d3 (fuchsia-600 — magenta accent) - Gradient signature : linear-gradient(118deg, #2563eb, #06b6d4 52%, #c026d3) - Box shadow CTA : rgba(37,99,235,0.28/0.42) - 72 remplacements hex/rgba dans 5 templates marketing/legal + email service Tests : 81 passed / 3 failed (3 échecs pré-existants /blog + trust-bar phrasing, non liés à ce changement). 0 régression. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
82 lines
4.0 KiB
HTML
82 lines
4.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr-CA">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="theme-color" content="#060d1a">
|
|
|
|
<title>{% block title %}DictIA — Transcription IA conforme Loi 25 | Avocats, CPA, secteur public{% endblock %}</title>
|
|
<meta name="description" content="{% block description %}Transcription IA 100% locale, conforme Loi 25. Pour avocats, CPA, ChAD et 6 autres ordres professionnels. Hébergé au Québec, zéro Cloud Act.{% endblock %}">
|
|
<link rel="canonical" href="{% block canonical %}https://dictia.pages.dev{{ request.path }}{% endblock %}">
|
|
|
|
<!-- Open Graph -->
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:title" content="{{ self.title() }}">
|
|
<meta property="og:description" content="{{ self.description() }}">
|
|
<meta property="og:image" content="{% block og_image %}https://dictia.pages.dev/static/images/og/og-default.png{% endblock %}">
|
|
<meta property="og:url" content="https://dictia.pages.dev{{ request.path }}">
|
|
<meta property="og:locale" content="fr_CA">
|
|
<meta property="og:site_name" content="DictIA">
|
|
|
|
<!-- Twitter Card -->
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="twitter:title" content="{{ self.title() }}">
|
|
<meta name="twitter:description" content="{{ self.description() }}">
|
|
<meta name="twitter:image" content="{{ self.og_image() }}">
|
|
|
|
<!-- Preload critical fonts -->
|
|
<link rel="preload" href="/static/fonts/Inter-Variable.woff2" as="font" type="font/woff2" crossorigin>
|
|
|
|
<!-- Marketing CSS (Tailwind v4 buildé) -->
|
|
<link rel="stylesheet" href="/static/css/marketing.css">
|
|
|
|
<!-- Favicon -->
|
|
<link rel="icon" type="image/png" href="/static/images/dictia-logo.png">
|
|
<link rel="alternate icon" type="image/svg+xml" href="/static/images/favicon.svg">
|
|
|
|
{% block schema %}{% endblock %}
|
|
{% block head_extra %}{% endblock %}
|
|
</head>
|
|
<body class="bg-white">
|
|
<!-- Glassmorphism header (FlexiHub style: 62px, navy/.97 + backdrop-blur-xl + 0.045 border) -->
|
|
<header class="fixed top-0 inset-x-0 z-50 h-[62px] bg-brand-navy/[0.97] backdrop-blur-xl border-b border-white/[0.045]">
|
|
<div class="max-w-[1200px] mx-auto h-full px-6 flex items-center justify-between">
|
|
<a href="/" class="flex items-center gap-3 leading-none" aria-label="DictIA — Transcription, accueil">
|
|
<img src="{{ url_for('static', filename='images/dictia-logo.png') }}"
|
|
alt=""
|
|
width="40"
|
|
height="40"
|
|
class="w-10 h-10 flex-shrink-0"
|
|
aria-hidden="true">
|
|
<span class="flex flex-col">
|
|
<span class="font-black text-xl tracking-tight grad-text">DictIA</span>
|
|
<span class="text-[10px] uppercase tracking-[0.2em] text-white font-medium mt-0.5">Transcription</span>
|
|
</span>
|
|
</a>
|
|
|
|
<nav class="hidden md:flex gap-8 text-sm font-medium text-white/80" aria-label="Navigation principale">
|
|
<a href="/fonctionnalites" class="hover:text-white transition">Fonctionnalités</a>
|
|
<a href="/tarifs" class="hover:text-white transition">Tarifs</a>
|
|
<a href="/contact" class="hover:text-white transition">Contact</a>
|
|
</nav>
|
|
|
|
<div class="flex items-center gap-3">
|
|
<a href="/login" class="text-sm font-medium text-white/80 hover:text-white">Connexion</a>
|
|
{% from 'macros/button.html' import button %}
|
|
{{ button('Démarrer', href='/signup', variant='primary', size='sm', icon='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-4 h-4" aria-hidden="true"><path d="M14 5l7 7m0 0l-7 7m7-7H3"/></svg>') }}
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="pt-[62px]">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
|
|
{% include 'marketing/_footer.html' %}
|
|
|
|
<!-- Alpine.js for interactivity (FAQ accordion, ROI calculator, mobile menu) -->
|
|
<script src="/static/js/alpine.min.js" defer></script>
|
|
{% block scripts %}{% endblock %}
|
|
</body>
|
|
</html>
|