From e0a4d2d8889b169b4b969fc7363011da7934483f Mon Sep 17 00:00:00 2001 From: Sharang Parnerkar Date: Wed, 18 Feb 2026 21:52:45 +0100 Subject: [PATCH] feat(ui): add public landing page with impressum and privacy pages Introduce a marketing landing page at `/` with hero section, feature grid, how-it-works steps, CTA banner, and footer. Move the authenticated dashboard to `/dashboard`. Add static Impressum and Privacy Policy pages for EU legal compliance. Update login redirect defaults accordingly. Co-Authored-By: Claude Opus 4.6 --- assets/main.css | 539 ++++++++++++++++++++++++++++++++++++++++ assets/tailwind.css | 486 ++++++++++++++++++++++++++++++++---- src/app.rs | 14 +- src/components/login.rs | 17 +- src/pages/impressum.rs | 74 ++++++ src/pages/landing.rs | 419 +++++++++++++++++++++++++++++++ src/pages/mod.rs | 7 + src/pages/overview.rs | 2 +- src/pages/privacy.rs | 110 ++++++++ 9 files changed, 1620 insertions(+), 48 deletions(-) create mode 100644 src/pages/impressum.rs create mode 100644 src/pages/landing.rs create mode 100644 src/pages/privacy.rs diff --git a/assets/main.css b/assets/main.css index 89995cd..f1c4e1a 100644 --- a/assets/main.css +++ b/assets/main.css @@ -211,3 +211,542 @@ h1, h2, h3, h4, h5, h6 { color: #8892a8; margin: 0; } + +/* ===== Landing Page ===== */ +.landing { + min-height: 100vh; + display: flex; + flex-direction: column; +} + +/* -- Landing Nav -- */ +.landing-nav { + position: sticky; + top: 0; + z-index: 100; + background-color: rgba(15, 17, 22, 0.85); + backdrop-filter: blur(12px); + border-bottom: 1px solid #1e222d; +} + +.landing-nav-inner { + max-width: 1200px; + margin: 0 auto; + padding: 16px 32px; + display: flex; + align-items: center; + gap: 32px; +} + +.landing-logo { + display: flex; + align-items: center; + gap: 10px; + font-family: 'Space Grotesk', sans-serif; + font-size: 20px; + font-weight: 700; + color: #f1f5f9; + text-decoration: none; +} + +.landing-logo-icon { + color: #91a4d2; + display: flex; + align-items: center; +} + +.landing-nav-links { + display: flex; + gap: 28px; + flex: 1; +} + +.landing-nav-links a { + color: #8892a8; + text-decoration: none; + font-size: 14px; + font-weight: 500; + transition: color 0.15s ease; +} + +.landing-nav-links a:hover { + color: #e2e8f0; +} + +.landing-nav-actions { + display: flex; + gap: 12px; + align-items: center; +} + +/* -- Hero Section -- */ +.hero-section { + max-width: 1200px; + margin: 0 auto; + padding: 80px 32px 60px; + display: grid; + grid-template-columns: 1fr 1fr; + gap: 64px; + align-items: center; +} + +.hero-badge { + font-size: 13px; + font-weight: 500; + color: #91a4d2; + border-color: rgba(145, 164, 210, 0.3); + margin-bottom: 24px; +} + +.hero-title { + font-size: 52px; + font-weight: 700; + line-height: 1.1; + color: #f1f5f9; + margin: 0 0 24px; +} + +.hero-title-accent { + background: linear-gradient(135deg, #91a4d2, #6d85c6); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + background-clip: text; +} + +.hero-subtitle { + font-size: 18px; + line-height: 1.7; + color: #8892a8; + margin: 0 0 36px; + max-width: 520px; +} + +.hero-actions { + display: flex; + gap: 16px; + align-items: center; +} + +.hero-graphic { + display: flex; + justify-content: center; + align-items: center; + max-width: 400px; + margin: 0 auto; +} + +/* -- Social Proof -- */ +.social-proof { + border-top: 1px solid #1e222d; + border-bottom: 1px solid #1e222d; + padding: 40px 32px; + text-align: center; +} + +.social-proof-text { + font-size: 16px; + color: #8892a8; + margin: 0 0 28px; +} + +.social-proof-highlight { + color: #91a4d2; + font-weight: 600; +} + +.social-proof-stats { + display: flex; + justify-content: center; + gap: 40px; + align-items: center; + flex-wrap: wrap; +} + +.proof-stat { + display: flex; + flex-direction: column; + align-items: center; + gap: 4px; +} + +.proof-stat-value { + font-family: 'Space Grotesk', sans-serif; + font-size: 24px; + font-weight: 700; + color: #f1f5f9; +} + +.proof-stat-label { + font-size: 13px; + color: #5a6478; + text-transform: uppercase; + letter-spacing: 0.05em; +} + +.proof-divider { + width: 1px; + height: 40px; + background-color: #1e222d; +} + +/* -- Section Titles -- */ +.section-title { + font-size: 36px; + font-weight: 700; + color: #f1f5f9; + text-align: center; + margin: 0 0 12px; +} + +.section-subtitle { + font-size: 18px; + color: #8892a8; + text-align: center; + margin: 0 0 48px; +} + +/* -- Features Section -- */ +.features-section { + max-width: 1200px; + margin: 0 auto; + padding: 80px 32px; +} + +.features-grid { + display: grid; + grid-template-columns: repeat(3, 1fr); + gap: 24px; +} + +.feature-card { + background-color: #1a1d26; + border: 1px solid #2a2f3d; + border-radius: 12px; + padding: 32px 28px; + transition: border-color 0.2s ease, transform 0.2s ease; +} + +.feature-card:hover { + border-color: #91a4d2; + transform: translateY(-2px); +} + +.feature-card-icon { + color: #91a4d2; + margin-bottom: 16px; +} + +.feature-card-title { + font-size: 18px; + font-weight: 600; + color: #f1f5f9; + margin: 0 0 8px; +} + +.feature-card-desc { + font-size: 14px; + line-height: 1.6; + color: #8892a8; + margin: 0; +} + +/* -- How It Works -- */ +.how-it-works-section { + max-width: 1200px; + margin: 0 auto; + padding: 80px 32px; +} + +.steps-grid { + display: grid; + grid-template-columns: repeat(3, 1fr); + gap: 32px; +} + +.step-card { + text-align: center; + padding: 40px 28px; +} + +.step-number { + font-family: 'Space Grotesk', sans-serif; + font-size: 48px; + font-weight: 700; + background: linear-gradient(135deg, #91a4d2, #6d85c6); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + background-clip: text; + display: block; + margin-bottom: 16px; +} + +.step-title { + font-size: 22px; + font-weight: 600; + color: #f1f5f9; + margin: 0 0 12px; +} + +.step-desc { + font-size: 15px; + line-height: 1.6; + color: #8892a8; + margin: 0; +} + +/* -- CTA Banner -- */ +.cta-banner { + max-width: 900px; + margin: 0 auto 80px; + padding: 64px 48px; + text-align: center; + background: linear-gradient( + 135deg, + rgba(145, 164, 210, 0.08), + rgba(109, 133, 198, 0.04) + ); + border: 1px solid rgba(145, 164, 210, 0.15); + border-radius: 20px; +} + +.cta-title { + font-size: 32px; + font-weight: 700; + color: #f1f5f9; + margin: 0 0 12px; +} + +.cta-subtitle { + font-size: 18px; + color: #8892a8; + margin: 0 0 32px; +} + +.cta-actions { + display: flex; + gap: 16px; + justify-content: center; +} + +/* -- Landing Footer -- */ +.landing-footer { + border-top: 1px solid #1e222d; + padding: 60px 32px 0; + margin-top: auto; +} + +.landing-footer-inner { + max-width: 1200px; + margin: 0 auto; + display: grid; + grid-template-columns: 2fr 1fr 1fr 1fr; + gap: 48px; +} + +.footer-brand { + display: flex; + flex-direction: column; + gap: 12px; +} + +.footer-tagline { + font-size: 14px; + color: #5a6478; + margin: 0; + max-width: 280px; +} + +.footer-links-group { + display: flex; + flex-direction: column; + gap: 10px; +} + +.footer-links-heading { + font-size: 13px; + font-weight: 600; + color: #8892a8; + text-transform: uppercase; + letter-spacing: 0.05em; + margin: 0 0 4px; +} + +.footer-links-group a { + font-size: 14px; + color: #5a6478; + text-decoration: none; + transition: color 0.15s ease; +} + +.footer-links-group a:hover { + color: #91a4d2; +} + +.footer-bottom { + max-width: 1200px; + margin: 48px auto 0; + padding: 20px 0; + border-top: 1px solid #1e222d; + text-align: center; +} + +.footer-bottom p { + font-size: 13px; + color: #3d4556; + margin: 0; +} + +/* ===== Legal Pages (Impressum, Privacy) ===== */ +.legal-page { + min-height: 100vh; + display: flex; + flex-direction: column; +} + +.legal-nav { + padding: 20px 32px; + border-bottom: 1px solid #1e222d; +} + +.legal-content { + max-width: 760px; + margin: 0 auto; + padding: 48px 32px 80px; + flex: 1; +} + +.legal-content h1 { + font-size: 36px; + font-weight: 700; + color: #f1f5f9; + margin: 0 0 32px; +} + +.legal-content h2 { + font-size: 22px; + font-weight: 600; + color: #f1f5f9; + margin: 40px 0 12px; +} + +.legal-content p { + font-size: 15px; + line-height: 1.7; + color: #8892a8; + margin: 0 0 16px; +} + +.legal-content ul { + padding-left: 24px; + margin: 0 0 16px; +} + +.legal-content li { + font-size: 15px; + line-height: 1.7; + color: #8892a8; + margin-bottom: 8px; +} + +.legal-updated { + font-size: 14px; + color: #5a6478; + font-style: italic; +} + +.legal-footer { + padding: 20px 32px; + border-top: 1px solid #1e222d; + display: flex; + gap: 24px; + justify-content: center; +} + +.legal-footer a { + font-size: 14px; + color: #5a6478; + text-decoration: none; + transition: color 0.15s ease; +} + +.legal-footer a:hover { + color: #91a4d2; +} + +/* ===== Responsive: Landing Page ===== */ +@media (max-width: 1024px) { + .hero-section { + grid-template-columns: 1fr; + padding: 60px 24px 40px; + gap: 40px; + } + + .hero-graphic { + max-width: 300px; + order: -1; + } + + .features-grid { + grid-template-columns: repeat(2, 1fr); + } + + .landing-footer-inner { + grid-template-columns: 1fr 1fr; + gap: 32px; + } +} + +@media (max-width: 768px) { + .landing-nav-links { + display: none; + } + + .hero-title { + font-size: 36px; + } + + .hero-subtitle { + font-size: 16px; + } + + .hero-actions { + flex-direction: column; + align-items: stretch; + } + + .features-grid, + .steps-grid { + grid-template-columns: 1fr; + } + + .social-proof-stats { + gap: 24px; + } + + .proof-divider { + display: none; + } + + .cta-banner { + margin: 0 16px 60px; + padding: 40px 24px; + } + + .cta-title { + font-size: 24px; + } + + .cta-actions { + flex-direction: column; + align-items: stretch; + } + + .landing-footer-inner { + grid-template-columns: 1fr; + gap: 24px; + } + + .section-title { + font-size: 28px; + } +} diff --git a/assets/tailwind.css b/assets/tailwind.css index e626241..30a5aff 100644 --- a/assets/tailwind.css +++ b/assets/tailwind.css @@ -1,4 +1,4 @@ -/*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */ +/*! tailwindcss v4.2.0 | MIT License | https://tailwindcss.com */ @layer properties; @layer theme, base, components, utilities; @layer theme { @@ -162,55 +162,137 @@ } } @layer utilities { - .diff { + .btn { + :where(&) { + @layer daisyui.l1.l2.l3 { + width: unset; + } + } + .prose :where(a&:not(.btn-link)):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + text-decoration-line: none; + } @layer daisyui.l1.l2.l3 { - position: relative; - display: grid; - width: 100%; - overflow: hidden; + display: inline-flex; + flex-shrink: 0; + cursor: pointer; + flex-wrap: nowrap; + align-items: center; + justify-content: center; + gap: calc(0.25rem * 1.5); + text-align: center; + vertical-align: middle; + outline-offset: 2px; webkit-user-select: none; user-select: none; - grid-template-rows: 1fr 1.8rem 1fr; - direction: ltr; - container-type: inline-size; - grid-template-columns: auto 1fr; - &:focus-visible, &:has(.diff-item-1:focus-visible) { - outline-style: var(--tw-outline-style); - outline-width: 2px; - outline-offset: 1px; - outline-color: var(--color-base-content); + padding-inline: var(--btn-p); + color: var(--btn-fg); + --tw-prose-links: var(--btn-fg); + height: var(--size); + font-size: var(--fontsize, 0.875rem); + font-weight: 600; + outline-color: var(--btn-color, var(--color-base-content)); + transition-property: color, background-color, border-color, box-shadow; + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + transition-duration: 0.2s; + border-start-start-radius: var(--join-ss, var(--radius-field)); + border-start-end-radius: var(--join-se, var(--radius-field)); + border-end-start-radius: var(--join-es, var(--radius-field)); + border-end-end-radius: var(--join-ee, var(--radius-field)); + background-color: var(--btn-bg); + background-size: auto, calc(var(--noise) * 100%); + background-image: none, var(--btn-noise); + border-width: var(--border); + border-style: solid; + border-color: var(--btn-border); + text-shadow: 0 0.5px oklch(100% 0 0 / calc(var(--depth) * 0.15)); + touch-action: manipulation; + box-shadow: 0 0.5px 0 0.5px oklch(100% 0 0 / calc(var(--depth) * 6%)) inset, var(--btn-shadow); + --size: calc(var(--size-field, 0.25rem) * 10); + --btn-bg: var(--btn-color, var(--color-base-200)); + --btn-fg: var(--color-base-content); + --btn-p: 1rem; + --btn-border: var(--btn-bg); + @supports (color: color-mix(in lab, red, red)) { + --btn-border: color-mix(in oklab, var(--btn-bg), #000 calc(var(--depth) * 5%)); } - &:focus-visible { - outline-style: var(--tw-outline-style); - outline-width: 2px; - outline-offset: 1px; - outline-color: var(--color-base-content); - .diff-resizer { - min-width: 95cqi; - max-width: 95cqi; - } + --btn-shadow: 0 3px 2px -2px var(--btn-bg), + 0 4px 3px -2px var(--btn-bg); + @supports (color: color-mix(in lab, red, red)) { + --btn-shadow: 0 3px 2px -2px color-mix(in oklab, var(--btn-bg) calc(var(--depth) * 30%), #0000), + 0 4px 3px -2px color-mix(in oklab, var(--btn-bg) calc(var(--depth) * 30%), #0000); } - &:has(.diff-item-1:focus-visible) { - outline-style: var(--tw-outline-style); - outline-width: 2px; - outline-offset: 1px; - .diff-resizer { - min-width: 5cqi; - max-width: 5cqi; - } - } - @supports (-webkit-overflow-scrolling: touch) and (overflow: -webkit-paged-x) { - &:focus { - .diff-resizer { - min-width: 5cqi; - max-width: 5cqi; + --btn-noise: var(--fx-noise); + @media (hover: hover) { + &:hover { + --btn-bg: var(--btn-color, var(--color-base-200)); + @supports (color: color-mix(in lab, red, red)) { + --btn-bg: color-mix(in oklab, var(--btn-color, var(--color-base-200)), #000 7%); } } - &:has(.diff-item-1:focus) { - .diff-resizer { - min-width: 95cqi; - max-width: 95cqi; + } + &:focus-visible, &:has(:focus-visible) { + outline-width: 2px; + outline-style: solid; + isolation: isolate; + } + &:active:not(.btn-active) { + translate: 0 0.5px; + --btn-bg: var(--btn-color, var(--color-base-200)); + @supports (color: color-mix(in lab, red, red)) { + --btn-bg: color-mix(in oklab, var(--btn-color, var(--color-base-200)), #000 5%); + } + --btn-border: var(--btn-color, var(--color-base-200)); + @supports (color: color-mix(in lab, red, red)) { + --btn-border: color-mix(in oklab, var(--btn-color, var(--color-base-200)), #000 7%); + } + --btn-shadow: 0 0 0 0 oklch(0% 0 0/0), 0 0 0 0 oklch(0% 0 0/0); + } + &:is(input[type="checkbox"], input[type="radio"]) { + appearance: none; + &[aria-label]::after { + --tw-content: attr(aria-label); + content: var(--tw-content); + } + } + &:where(input:checked:not(.filter .btn)) { + --btn-color: var(--color-primary); + --btn-fg: var(--color-primary-content); + isolation: isolate; + } + } + &:disabled { + @layer daisyui.l1.l2 { + &:not(.btn-link, .btn-ghost) { + background-color: var(--color-base-content); + @supports (color: color-mix(in lab, red, red)) { + background-color: color-mix(in oklab, var(--color-base-content) 10%, transparent); } + box-shadow: none; + } + pointer-events: none; + --btn-border: #0000; + --btn-noise: none; + --btn-fg: var(--color-base-content); + @supports (color: color-mix(in lab, red, red)) { + --btn-fg: color-mix(in oklch, var(--color-base-content) 20%, #0000); + } + } + } + &[disabled] { + @layer daisyui.l1.l2 { + &:not(.btn-link, .btn-ghost) { + background-color: var(--color-base-content); + @supports (color: color-mix(in lab, red, red)) { + background-color: color-mix(in oklab, var(--color-base-content) 10%, transparent); + } + box-shadow: none; + } + pointer-events: none; + --btn-border: #0000; + --btn-noise: none; + --btn-fg: var(--color-base-content); + @supports (color: color-mix(in lab, red, red)) { + --btn-fg: color-mix(in oklch, var(--color-base-content) 20%, #0000); } } } @@ -490,6 +572,23 @@ } } } + .indicator { + @layer daisyui.l1.l2.l3 { + position: relative; + display: inline-flex; + width: max-content; + :where(.indicator-item) { + z-index: 1; + position: absolute; + white-space: nowrap; + top: var(--indicator-t, 0); + bottom: var(--indicator-b, auto); + left: var(--indicator-s, auto); + right: var(--indicator-e, 0); + translate: var(--indicator-x, 50%) var(--indicator-y, -50%); + } + } + } .steps { @layer daisyui.l1.l2.l3 { display: inline-grid; @@ -600,6 +699,175 @@ } } } + .select { + @layer daisyui.l1.l2.l3 { + border: var(--border) solid #0000; + position: relative; + display: inline-flex; + flex-shrink: 1; + appearance: none; + align-items: center; + gap: calc(0.25rem * 1.5); + background-color: var(--color-base-100); + padding-inline-start: calc(0.25rem * 3); + padding-inline-end: calc(0.25rem * 7); + vertical-align: middle; + width: clamp(3rem, 20rem, 100%); + height: var(--size); + font-size: 0.875rem; + touch-action: manipulation; + border-start-start-radius: var(--join-ss, var(--radius-field)); + border-start-end-radius: var(--join-se, var(--radius-field)); + border-end-start-radius: var(--join-es, var(--radius-field)); + border-end-end-radius: var(--join-ee, var(--radius-field)); + background-image: linear-gradient(45deg, #0000 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, #0000 50%); + background-position: calc(100% - 20px) calc(1px + 50%), calc(100% - 16.1px) calc(1px + 50%); + background-size: 4px 4px, 4px 4px; + background-repeat: no-repeat; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + box-shadow: 0 1px var(--input-color) inset, 0 -1px oklch(100% 0 0 / calc(var(--depth) * 0.1)) inset; + @supports (color: color-mix(in lab, red, red)) { + box-shadow: 0 1px color-mix(in oklab, var(--input-color) calc(var(--depth) * 10%), #0000) inset, 0 -1px oklch(100% 0 0 / calc(var(--depth) * 0.1)) inset; + } + border-color: var(--input-color); + --input-color: var(--color-base-content); + @supports (color: color-mix(in lab, red, red)) { + --input-color: color-mix(in oklab, var(--color-base-content) 20%, #0000); + } + --size: calc(var(--size-field, 0.25rem) * 10); + [dir="rtl"] & { + background-position: calc(0% + 12px) calc(1px + 50%), calc(0% + 16px) calc(1px + 50%); + &::picker(select), select::picker(select) { + translate: 0.5rem 0; + } + } + &[multiple] { + height: auto; + overflow: auto; + padding-block: calc(0.25rem * 3); + padding-inline-end: calc(0.25rem * 3); + background-image: none; + } + select { + margin-inline-start: calc(0.25rem * -3); + margin-inline-end: calc(0.25rem * -7); + width: calc(100% + 2.75rem); + appearance: none; + padding-inline-start: calc(0.25rem * 3); + padding-inline-end: calc(0.25rem * 7); + height: calc(100% - calc(var(--border) * 2)); + align-items: center; + background: inherit; + border-radius: inherit; + border-style: none; + &:focus, &:focus-within { + --tw-outline-style: none; + outline-style: none; + @media (forced-colors: active) { + outline: 2px solid transparent; + outline-offset: 2px; + } + } + &:not(:last-child) { + margin-inline-end: calc(0.25rem * -5.5); + background-image: none; + } + } + &:focus, &:focus-within { + --input-color: var(--color-base-content); + box-shadow: 0 1px var(--input-color); + @supports (color: color-mix(in lab, red, red)) { + box-shadow: 0 1px color-mix(in oklab, var(--input-color) calc(var(--depth) * 10%), #0000); + } + outline: 2px solid var(--input-color); + outline-offset: 2px; + isolation: isolate; + } + &:has(> select[disabled]), &:is(:disabled, [disabled]), fieldset:disabled & { + cursor: not-allowed; + border-color: var(--color-base-200); + background-color: var(--color-base-200); + color: var(--color-base-content); + @supports (color: color-mix(in lab, red, red)) { + color: color-mix(in oklab, var(--color-base-content) 40%, transparent); + } + &::placeholder { + color: var(--color-base-content); + @supports (color: color-mix(in lab, red, red)) { + color: color-mix(in oklab, var(--color-base-content) 20%, transparent); + } + } + } + &:has(> select[disabled]) > select[disabled] { + cursor: not-allowed; + } + &, & select { + @supports (appearance: base-select) { + appearance: base-select; + } + @supports (appearance: base-select) { + &::picker(select) { + appearance: base-select; + } + } + &::picker(select) { + color: inherit; + max-height: min(24rem, 70dvh); + margin-inline: 0.5rem; + translate: -0.5rem 0; + border: var(--border) solid var(--color-base-200); + margin-block: calc(0.25rem * 2); + border-radius: var(--radius-box); + padding: calc(0.25rem * 2); + background-color: inherit; + box-shadow: 0 2px calc(var(--depth) * 3px) -2px oklch(0% 0 0/0.2); + box-shadow: 0 20px 25px -5px rgb(0 0 0 / calc(var(--depth) * 0.1)), 0 8px 10px -6px rgb(0 0 0 / calc(var(--depth) * 0.1)); + } + &::picker-icon { + display: none; + } + optgroup { + padding-top: 0.5em; + option { + &:nth-child(1) { + margin-top: 0.5em; + } + } + } + option { + border-radius: var(--radius-field); + padding-inline: calc(0.25rem * 3); + padding-block: calc(0.25rem * 1.5); + transition-property: color, background-color; + transition-duration: 0.2s; + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + white-space: normal; + &:not(:disabled) { + &:hover, &:focus-visible { + cursor: pointer; + background-color: var(--color-base-content); + @supports (color: color-mix(in lab, red, red)) { + background-color: color-mix(in oklab, var(--color-base-content) 10%, transparent); + } + --tw-outline-style: none; + outline-style: none; + @media (forced-colors: active) { + outline: 2px solid transparent; + outline-offset: 2px; + } + } + &:active { + background-color: var(--color-neutral); + color: var(--color-neutral-content); + box-shadow: 0 2px calc(var(--depth) * 3px) -2px var(--color-neutral); + } + } + } + } + } + } .avatar { @layer daisyui.l1.l2.l3 { position: relative; @@ -725,6 +993,23 @@ .static { position: static; } + .start { + inset-inline-start: var(--spacing); + } + .end { + inset-inline-end: var(--spacing); + } + .hero-content { + @layer daisyui.l1.l2.l3 { + isolation: isolate; + display: flex; + max-width: 80rem; + align-items: center; + justify-content: center; + gap: calc(0.25rem * 4); + padding: calc(0.25rem * 4); + } + } .stack { @layer daisyui.l1.l2.l3 { display: inline-grid; @@ -806,6 +1091,19 @@ } } } + .hero { + @layer daisyui.l1.l2.l3 { + display: grid; + width: 100%; + place-items: center; + background-size: cover; + background-position: center; + & > * { + grid-column-start: 1; + grid-row-start: 1; + } + } + } .container { width: 100%; @media (width >= 40rem) { @@ -888,6 +1186,28 @@ } } } + .badge { + @layer daisyui.l1.l2.l3 { + display: inline-flex; + align-items: center; + justify-content: center; + gap: calc(0.25rem * 2); + border-radius: var(--radius-selector); + vertical-align: middle; + color: var(--badge-fg); + border: var(--border) solid var(--badge-color, var(--color-base-200)); + font-size: 0.875rem; + width: fit-content; + background-size: auto, calc(var(--noise) * 100%); + background-image: none, var(--fx-noise); + background-color: var(--badge-bg); + --badge-bg: var(--badge-color, var(--color-base-100)); + --badge-fg: var(--color-base-content); + --size: calc(var(--size-selector, 0.25rem) * 6); + height: var(--size); + padding-inline: calc(var(--size) / 2 - var(--border)); + } + } .footer { @layer daisyui.l1.l2.l3 { display: grid; @@ -949,12 +1269,88 @@ } } } + .badge-outline { + @layer daisyui.l1.l2 { + color: var(--badge-color); + --badge-bg: #0000; + background-image: none; + border-color: currentColor; + } + } .p-6 { padding: calc(var(--spacing) * 6); } .text-center { text-align: center; } + .outline { + outline-style: var(--tw-outline-style); + outline-width: 1px; + } + .btn-ghost { + @layer daisyui.l1 { + &:not(.btn-active, :hover, :active:focus, :focus-visible, input:checked:not(.filter .btn)) { + --btn-shadow: ""; + --btn-bg: #0000; + --btn-border: #0000; + --btn-noise: none; + &:not(:disabled, [disabled], .btn-disabled) { + outline-color: currentcolor; + --btn-fg: var(--btn-color, currentColor); + } + } + @media (hover: none) { + &:not(.btn-active, :active, :focus-visible, input:checked:not(.filter .btn)):hover { + outline-color: currentcolor; + --btn-shadow: ""; + --btn-bg: #0000; + --btn-fg: var(--btn-color, currentColor); + --btn-border: #0000; + --btn-noise: none; + } + } + } + } + .btn-outline { + @layer daisyui.l1 { + &:not( .btn-active, :hover, :active:focus, :focus-visible, input:checked:not(.filter .btn), :disabled, [disabled], .btn-disabled ) { + --btn-shadow: ""; + --btn-bg: #0000; + --btn-fg: var(--btn-color); + --btn-border: var(--btn-color); + --btn-noise: none; + } + @media (hover: none) { + &:not(.btn-active, :active, :focus-visible, input:checked:not(.filter .btn)):hover { + --btn-shadow: ""; + --btn-bg: #0000; + --btn-fg: var(--btn-color); + --btn-border: var(--btn-color); + --btn-noise: none; + } + } + } + } + .btn-lg { + @layer daisyui.l1.l2 { + --fontsize: 1.125rem; + --btn-p: 1.25rem; + --size: calc(var(--size-field, 0.25rem) * 12); + } + } + .btn-sm { + @layer daisyui.l1.l2 { + --fontsize: 0.75rem; + --btn-p: 0.75rem; + --size: calc(var(--size-field, 0.25rem) * 8); + } + } + .btn-primary { + @layer daisyui.l1.l2.l3 { + --btn-color: var(--color-primary); + --btn-fg: var(--color-primary-content); + } + } } @layer base { :where(:root),:root:has(input.theme-controller[value=light]:checked),[data-theme=light] { @@ -1323,6 +1719,11 @@ syntax: "*"; inherits: false; } +@property --tw-outline-style { + syntax: "*"; + inherits: false; + initial-value: solid; +} @layer properties { @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) { *, ::before, ::after, ::backdrop { @@ -1331,6 +1732,7 @@ --tw-rotate-z: initial; --tw-skew-x: initial; --tw-skew-y: initial; + --tw-outline-style: solid; } } } diff --git a/src/app.rs b/src/app.rs index 8b64822..de04a9f 100644 --- a/src/app.rs +++ b/src/app.rs @@ -3,14 +3,20 @@ use dioxus::prelude::*; /// Application routes. /// -/// `OverviewPage` is wrapped in the `AppShell` layout so the sidebar -/// renders around every authenticated page. The `/login` route remains -/// outside the shell (unauthenticated). +/// Public pages (`LandingPage`, `ImpressumPage`, `PrivacyPage`) live +/// outside the `AppShell` layout. Authenticated pages like `OverviewPage` +/// are wrapped in `AppShell` which renders the sidebar. #[derive(Debug, Clone, Routable, PartialEq)] #[rustfmt::skip] pub enum Route { + #[route("/")] + LandingPage {}, + #[route("/impressum")] + ImpressumPage {}, + #[route("/privacy")] + PrivacyPage {}, #[layout(AppShell)] - #[route("/")] + #[route("/dashboard")] OverviewPage {}, #[end_layout] #[route("/login?:redirect_url")] diff --git a/src/components/login.rs b/src/components/login.rs index c1f5772..80b5bf9 100644 --- a/src/components/login.rs +++ b/src/components/login.rs @@ -1,11 +1,26 @@ use crate::Route; use dioxus::prelude::*; + +/// Login redirect component. +/// +/// Redirects the user to the external OAuth authentication endpoint. +/// If no `redirect_url` is provided, defaults to `/dashboard`. +/// +/// # Arguments +/// +/// * `redirect_url` - URL to redirect to after successful authentication #[component] pub fn Login(redirect_url: String) -> Element { let navigator = use_navigator(); use_effect(move || { - let target = format!("/auth?redirect_url={}", redirect_url); + // Default to /dashboard when redirect_url is empty. + let destination = if redirect_url.is_empty() { + "/dashboard".to_string() + } else { + redirect_url.clone() + }; + let target = format!("/auth?redirect_url={destination}"); navigator.push(NavigationTarget::::External(target)); }); diff --git a/src/pages/impressum.rs b/src/pages/impressum.rs new file mode 100644 index 0000000..c35a1c9 --- /dev/null +++ b/src/pages/impressum.rs @@ -0,0 +1,74 @@ +use dioxus::prelude::*; +use dioxus_free_icons::icons::bs_icons::BsShieldCheck; +use dioxus_free_icons::Icon; + +use crate::Route; + +/// Impressum (legal notice) page required by German/EU law. +/// +/// Displays placeholder company information. This page is publicly +/// accessible without authentication. +#[component] +pub fn ImpressumPage() -> Element { + rsx! { + div { class: "legal-page", + nav { class: "legal-nav", + Link { to: Route::LandingPage {}, class: "landing-logo", + span { class: "landing-logo-icon", + Icon { icon: BsShieldCheck, width: 20, height: 20 } + } + span { "CERTifAI" } + } + } + main { class: "legal-content", + h1 { "Impressum" } + + h2 { "Information according to 5 TMG" } + p { + "CERTifAI GmbH" + br {} + "Musterstrasse 1" + br {} + "10115 Berlin" + br {} + "Germany" + } + + h2 { "Represented by" } + p { "Managing Director: [Name]" } + + h2 { "Contact" } + p { + "Email: info@certifai.example" + br {} + "Phone: +49 (0) 30 1234567" + } + + h2 { "Commercial Register" } + p { + "Registered at: Amtsgericht Berlin-Charlottenburg" + br {} + "Registration number: HRB XXXXXX" + } + + h2 { "VAT ID" } + p { "VAT identification number according to 27a UStG: DE XXXXXXXXX" } + + h2 { "Responsible for content according to 55 Abs. 2 RStV" } + p { + "[Name]" + br {} + "CERTifAI GmbH" + br {} + "Musterstrasse 1" + br {} + "10115 Berlin" + } + } + footer { class: "legal-footer", + Link { to: Route::LandingPage {}, "Back to Home" } + Link { to: Route::PrivacyPage {}, "Privacy Policy" } + } + } + } +} diff --git a/src/pages/landing.rs b/src/pages/landing.rs new file mode 100644 index 0000000..b6c6c6a --- /dev/null +++ b/src/pages/landing.rs @@ -0,0 +1,419 @@ +use dioxus::prelude::*; +use dioxus_free_icons::icons::bs_icons::{ + BsArrowRight, BsGlobe2, BsKey, BsRobot, BsServer, BsShieldCheck, +}; +use dioxus_free_icons::icons::fa_solid_icons::FaCubes; +use dioxus_free_icons::Icon; + +use crate::Route; + +/// Public landing page for the CERTifAI platform. +/// +/// Displays a marketing-oriented page with hero section, feature grid, +/// how-it-works steps, and call-to-action banners. This page is accessible +/// without authentication. +#[component] +pub fn LandingPage() -> Element { + rsx! { + div { class: "landing", + LandingNav {} + HeroSection {} + SocialProof {} + FeaturesGrid {} + HowItWorks {} + CtaBanner {} + LandingFooter {} + } + } +} + +/// Sticky top navigation bar with logo, nav links, and CTA buttons. +#[component] +fn LandingNav() -> Element { + rsx! { + nav { class: "landing-nav", + div { class: "landing-nav-inner", + Link { to: Route::LandingPage {}, class: "landing-logo", + span { class: "landing-logo-icon", + Icon { icon: BsShieldCheck, width: 24, height: 24 } + } + span { "CERTifAI" } + } + div { class: "landing-nav-links", + a { href: "#features", "Features" } + a { href: "#how-it-works", "How It Works" } + a { href: "#pricing", "Pricing" } + } + div { class: "landing-nav-actions", + Link { + to: Route::Login { redirect_url: "/dashboard".into() }, + class: "btn btn-ghost btn-sm", + "Log In" + } + Link { + to: Route::Login { redirect_url: "/dashboard".into() }, + class: "btn btn-primary btn-sm", + "Get Started" + } + } + } + } + } +} + +/// Hero section with headline, subtitle, and CTA buttons. +#[component] +fn HeroSection() -> Element { + rsx! { + section { class: "hero-section", + div { class: "hero-content", + div { class: "hero-badge badge badge-outline", + "Privacy-First GenAI Infrastructure" + } + h1 { class: "hero-title", + "Your AI. Your Data." + br {} + span { class: "hero-title-accent", "Your Infrastructure." } + } + p { class: "hero-subtitle", + "Self-hosted, GDPR-compliant generative AI platform for " + "enterprises that refuse to compromise on data sovereignty. " + "Deploy LLMs, agents, and MCP servers on your own terms." + } + div { class: "hero-actions", + Link { + to: Route::Login { redirect_url: "/dashboard".into() }, + class: "btn btn-primary btn-lg", + "Get Started" + Icon { icon: BsArrowRight, width: 18, height: 18 } + } + a { + href: "#features", + class: "btn btn-outline btn-lg", + "Learn More" + } + } + } + div { class: "hero-graphic", + // Abstract shield/network SVG motif + svg { + view_box: "0 0 400 400", + fill: "none", + width: "100%", + height: "100%", + // Gradient definitions + defs { + linearGradient { + id: "grad1", + x1: "0%", y1: "0%", + x2: "100%", y2: "100%", + stop { offset: "0%", stop_color: "#91a4d2" } + stop { offset: "100%", stop_color: "#6d85c6" } + } + linearGradient { + id: "grad2", + x1: "0%", y1: "100%", + x2: "100%", y2: "0%", + stop { offset: "0%", stop_color: "#f97066" } + stop { offset: "100%", stop_color: "#f9a066" } + } + radialGradient { + id: "glow", + cx: "50%", cy: "50%", r: "50%", + stop { offset: "0%", stop_color: "rgba(145,164,210,0.3)" } + stop { offset: "100%", stop_color: "rgba(145,164,210,0)" } + } + } + // Background glow + circle { cx: "200", cy: "200", r: "180", fill: "url(#glow)" } + // Shield outline + path { + d: "M200 40 L340 110 L340 230 C340 300 270 360 200 380 \ + C130 360 60 300 60 230 L60 110 Z", + stroke: "url(#grad1)", + stroke_width: "2", + fill: "none", + opacity: "0.6", + } + // Inner shield + path { + d: "M200 80 L310 135 L310 225 C310 280 255 330 200 345 \ + C145 330 90 280 90 225 L90 135 Z", + stroke: "url(#grad1)", + stroke_width: "1.5", + fill: "rgba(145,164,210,0.05)", + opacity: "0.8", + } + // Network nodes + circle { cx: "200", cy: "180", r: "8", fill: "url(#grad1)" } + circle { cx: "150", cy: "230", r: "6", fill: "url(#grad2)" } + circle { cx: "250", cy: "230", r: "6", fill: "url(#grad2)" } + circle { cx: "200", cy: "280", r: "6", fill: "url(#grad1)" } + circle { cx: "130", cy: "170", r: "4", fill: "#91a4d2", opacity: "0.6" } + circle { cx: "270", cy: "170", r: "4", fill: "#91a4d2", opacity: "0.6" } + // Network connections + line { + x1: "200", y1: "180", x2: "150", y2: "230", + stroke: "#91a4d2", stroke_width: "1", opacity: "0.4", + } + line { + x1: "200", y1: "180", x2: "250", y2: "230", + stroke: "#91a4d2", stroke_width: "1", opacity: "0.4", + } + line { + x1: "150", y1: "230", x2: "200", y2: "280", + stroke: "#91a4d2", stroke_width: "1", opacity: "0.4", + } + line { + x1: "250", y1: "230", x2: "200", y2: "280", + stroke: "#91a4d2", stroke_width: "1", opacity: "0.4", + } + line { + x1: "200", y1: "180", x2: "130", y2: "170", + stroke: "#91a4d2", stroke_width: "1", opacity: "0.3", + } + line { + x1: "200", y1: "180", x2: "270", y2: "170", + stroke: "#91a4d2", stroke_width: "1", opacity: "0.3", + } + // Checkmark inside shield center + path { + d: "M180 200 L195 215 L225 185", + stroke: "url(#grad1)", + stroke_width: "3", + stroke_linecap: "round", + stroke_linejoin: "round", + fill: "none", + } + } + } + } + } +} + +/// Social proof / trust indicator strip. +#[component] +fn SocialProof() -> Element { + rsx! { + section { class: "social-proof", + p { class: "social-proof-text", + "Built for enterprises that value " + span { class: "social-proof-highlight", "data sovereignty" } + } + div { class: "social-proof-stats", + div { class: "proof-stat", + span { class: "proof-stat-value", "100%" } + span { class: "proof-stat-label", "On-Premise" } + } + div { class: "proof-divider" } + div { class: "proof-stat", + span { class: "proof-stat-value", "GDPR" } + span { class: "proof-stat-label", "Compliant" } + } + div { class: "proof-divider" } + div { class: "proof-stat", + span { class: "proof-stat-value", "EU" } + span { class: "proof-stat-label", "Data Residency" } + } + div { class: "proof-divider" } + div { class: "proof-stat", + span { class: "proof-stat-value", "Zero" } + span { class: "proof-stat-label", "Third-Party Sharing" } + } + } + } + } +} + +/// Feature cards grid section. +#[component] +fn FeaturesGrid() -> Element { + rsx! { + section { id: "features", class: "features-section", + h2 { class: "section-title", "Everything You Need" } + p { class: "section-subtitle", + "A complete, self-hosted GenAI stack under your full control." + } + div { class: "features-grid", + FeatureCard { + icon: rsx! { Icon { icon: BsServer, width: 28, height: 28 } }, + title: "Self-Hosted Infrastructure", + description: "Deploy on your own hardware or private cloud. \ + Full control over your AI stack with no external dependencies.", + } + FeatureCard { + icon: rsx! { Icon { icon: BsShieldCheck, width: 28, height: 28 } }, + title: "GDPR Compliant", + description: "EU data residency guaranteed. Your data never \ + leaves your infrastructure or gets shared with third parties.", + } + FeatureCard { + icon: rsx! { Icon { icon: FaCubes, width: 28, height: 28 } }, + title: "LLM Management", + description: "Deploy, monitor, and manage multiple language \ + models. Switch between models with zero downtime.", + } + FeatureCard { + icon: rsx! { Icon { icon: BsRobot, width: 28, height: 28 } }, + title: "Agent Builder", + description: "Create custom AI agents with integrated Langchain \ + and Langfuse for full observability and control.", + } + FeatureCard { + icon: rsx! { Icon { icon: BsGlobe2, width: 28, height: 28 } }, + title: "MCP Server Management", + description: "Manage Model Context Protocol servers to extend \ + your AI capabilities with external tool integrations.", + } + FeatureCard { + icon: rsx! { Icon { icon: BsKey, width: 28, height: 28 } }, + title: "API Key Management", + description: "Generate API keys, track usage per seat, and \ + set fine-grained permissions for every integration.", + } + } + } + } +} + +/// Individual feature card. +/// +/// # Arguments +/// +/// * `icon` - The icon element to display +/// * `title` - Feature title +/// * `description` - Feature description text +#[component] +fn FeatureCard(icon: Element, title: &'static str, description: &'static str) -> Element { + rsx! { + div { class: "card feature-card", + div { class: "feature-card-icon", {icon} } + h3 { class: "feature-card-title", "{title}" } + p { class: "feature-card-desc", "{description}" } + } + } +} + +/// Three-step "How It Works" section. +#[component] +fn HowItWorks() -> Element { + rsx! { + section { id: "how-it-works", class: "how-it-works-section", + h2 { class: "section-title", "Up and Running in Minutes" } + p { class: "section-subtitle", + "Three steps to sovereign AI infrastructure." + } + div { class: "steps-grid", + StepCard { + number: "01", + title: "Deploy", + description: "Install CERTifAI on your infrastructure \ + with a single command. Supports Docker, Kubernetes, \ + and bare metal.", + } + StepCard { + number: "02", + title: "Configure", + description: "Connect your identity provider, select \ + your models, and set up team permissions through \ + the admin dashboard.", + } + StepCard { + number: "03", + title: "Scale", + description: "Add users, deploy more models, and \ + integrate with your existing tools via API keys \ + and MCP servers.", + } + } + } + } +} + +/// Individual step card. +/// +/// # Arguments +/// +/// * `number` - Step number string (e.g. "01") +/// * `title` - Step title +/// * `description` - Step description text +#[component] +fn StepCard(number: &'static str, title: &'static str, description: &'static str) -> Element { + rsx! { + div { class: "step-card", + span { class: "step-number", "{number}" } + h3 { class: "step-title", "{title}" } + p { class: "step-desc", "{description}" } + } + } +} + +/// Call-to-action banner before the footer. +#[component] +fn CtaBanner() -> Element { + rsx! { + section { class: "cta-banner", + h2 { class: "cta-title", + "Ready to take control of your AI infrastructure?" + } + p { class: "cta-subtitle", + "Start deploying sovereign GenAI today. No credit card required." + } + div { class: "cta-actions", + Link { + to: Route::Login { redirect_url: "/dashboard".into() }, + class: "btn btn-primary btn-lg", + "Get Started Free" + Icon { icon: BsArrowRight, width: 18, height: 18 } + } + Link { + to: Route::Login { redirect_url: "/dashboard".into() }, + class: "btn btn-outline btn-lg", + "Log In" + } + } + } + } +} + +/// Landing page footer with links and copyright. +#[component] +fn LandingFooter() -> Element { + rsx! { + footer { class: "landing-footer", + div { class: "landing-footer-inner", + div { class: "footer-brand", + div { class: "landing-logo", + span { class: "landing-logo-icon", + Icon { icon: BsShieldCheck, width: 20, height: 20 } + } + span { "CERTifAI" } + } + p { class: "footer-tagline", + "Sovereign GenAI infrastructure for enterprises." + } + } + div { class: "footer-links-group", + h4 { class: "footer-links-heading", "Product" } + a { href: "#features", "Features" } + a { href: "#how-it-works", "How It Works" } + a { href: "#pricing", "Pricing" } + } + div { class: "footer-links-group", + h4 { class: "footer-links-heading", "Legal" } + Link { to: Route::ImpressumPage {}, "Impressum" } + Link { to: Route::PrivacyPage {}, "Privacy Policy" } + } + div { class: "footer-links-group", + h4 { class: "footer-links-heading", "Resources" } + a { href: "#", "Documentation" } + a { href: "#", "API Reference" } + a { href: "#", "Support" } + } + } + div { class: "footer-bottom", + p { "2026 CERTifAI. All rights reserved." } + } + } + } +} diff --git a/src/pages/mod.rs b/src/pages/mod.rs index 4f91989..e0e9e8d 100644 --- a/src/pages/mod.rs +++ b/src/pages/mod.rs @@ -1,2 +1,9 @@ +mod impressum; +mod landing; mod overview; +mod privacy; + +pub use impressum::*; +pub use landing::*; pub use overview::*; +pub use privacy::*; diff --git a/src/pages/overview.rs b/src/pages/overview.rs index 3f5c1b8..0d42461 100644 --- a/src/pages/overview.rs +++ b/src/pages/overview.rs @@ -20,7 +20,7 @@ pub fn OverviewPage() -> Element { use_effect(move || { if let Some(Ok(false)) = auth_check() { navigator.push(NavigationTarget::::External( - "/auth?redirect_url=/".into(), + "/auth?redirect_url=/dashboard".into(), )); } }); diff --git a/src/pages/privacy.rs b/src/pages/privacy.rs new file mode 100644 index 0000000..127e946 --- /dev/null +++ b/src/pages/privacy.rs @@ -0,0 +1,110 @@ +use dioxus::prelude::*; +use dioxus_free_icons::icons::bs_icons::BsShieldCheck; +use dioxus_free_icons::Icon; + +use crate::Route; + +/// Privacy Policy page. +/// +/// Displays the platform's privacy policy. Publicly accessible +/// without authentication. +#[component] +pub fn PrivacyPage() -> Element { + rsx! { + div { class: "legal-page", + nav { class: "legal-nav", + Link { to: Route::LandingPage {}, class: "landing-logo", + span { class: "landing-logo-icon", + Icon { icon: BsShieldCheck, width: 20, height: 20 } + } + span { "CERTifAI" } + } + } + main { class: "legal-content", + h1 { "Privacy Policy" } + p { class: "legal-updated", + "Last updated: February 2026" + } + + h2 { "1. Introduction" } + p { + "CERTifAI GmbH (\"we\", \"our\", \"us\") is committed to " + "protecting your personal data. This privacy policy explains " + "how we collect, use, and safeguard your information when you " + "use our platform." + } + + h2 { "2. Data Controller" } + p { + "CERTifAI GmbH" + br {} + "Musterstrasse 1, 10115 Berlin, Germany" + br {} + "Email: privacy@certifai.example" + } + + h2 { "3. Data We Collect" } + p { + "We collect only the minimum data necessary to provide " + "our services:" + } + ul { + li { + strong { "Account data: " } + "Name, email address, and organization details " + "provided during registration." + } + li { + strong { "Usage data: " } + "API call logs, token counts, and feature usage " + "metrics for billing and analytics." + } + li { + strong { "Technical data: " } + "IP addresses, browser type, and session identifiers " + "for security and platform stability." + } + } + + h2 { "4. How We Use Your Data" } + ul { + li { "To provide and maintain the CERTifAI platform" } + li { "To manage your account and subscription" } + li { "To communicate service updates and security notices" } + li { "To comply with legal obligations" } + } + + h2 { "5. Data Storage and Sovereignty" } + p { + "CERTifAI is a self-hosted platform. All AI workloads, " + "model data, and inference results remain entirely within " + "your own infrastructure. We do not access, store, or " + "process your AI data on our servers." + } + + h2 { "6. Your Rights (GDPR)" } + p { "Under the GDPR, you have the right to:" } + ul { + li { "Access your personal data" } + li { "Rectify inaccurate data" } + li { "Request erasure of your data" } + li { "Restrict or object to processing" } + li { "Data portability" } + li { + "Lodge a complaint with a supervisory authority" + } + } + + h2 { "7. Contact" } + p { + "For privacy-related inquiries, contact us at " + "privacy@certifai.example." + } + } + footer { class: "legal-footer", + Link { to: Route::LandingPage {}, "Back to Home" } + Link { to: Route::ImpressumPage {}, "Impressum" } + } + } + } +}