- templates/macros/button.html: 3 variants (primary gradient/glow, secondary, ghost) x 3 sizes for reuse across marketing/billing/legal/auth templates - templates/marketing/base.html: Tailwind v4-scoped layout with FlexiHub glassmorphism header (62px, navy/.97, backdrop-blur-xl, .045 border), sticky positioning, OG/Twitter meta, Inter font preload, marketing.css link, Alpine.js defer, 5-item main nav + Connexion/Demarrer CTAs - templates/marketing/_footer.html: minimal Phase 2 placeholder with legal links + Inverness QC address + info@dictia.ca (full footer in A-2.7) - templates/marketing/landing.html: minimal hero placeholder (replaced in A-2.2 with full hero + cosmic orbs) - src/marketing/routes.py: landing() now render_template instead of inline HTML - 7 tests verify template structure, FlexiHub markers, nav, CTAs, legal links, no login redirect for anonymous users - Tailwind CSS rebuilt with new template content scope (cssnano-minified)
14 lines
631 B
HTML
14 lines
631 B
HTML
<footer class="bg-brand-navy2 text-white py-12 mt-20">
|
|
<div class="max-w-[1200px] mx-auto px-6 text-center">
|
|
<p class="text-sm text-white/60">
|
|
© 2026 DictIA Inc. · 77 ch. de la Seigneurie, Inverness QC G0S 1K0 ·
|
|
<a href="mailto:info@dictia.ca" class="hover:text-white">info@dictia.ca</a>
|
|
</p>
|
|
<p class="text-xs text-white/40 mt-2">
|
|
<a href="/legal/conditions" class="hover:text-white">Conditions</a> ·
|
|
<a href="/legal/confidentialite" class="hover:text-white">Confidentialité (Loi 25)</a> ·
|
|
<a href="/legal/cookies" class="hover:text-white">Cookies</a>
|
|
</p>
|
|
</div>
|
|
</footer>
|