Files
qumo-website/website/src/pages/index.astro
2026-04-10 18:41:58 +02:00

94 lines
4.1 KiB
Plaintext

---
import BaseLayout from '../layouts/BaseLayout.astro';
const title = 'Qumo — Brand Smoke Test';
const description = 'Brand token and font weight smoke test — dev artifact.';
---
<BaseLayout
title={title}
description={description}
locale="en"
canonicalUrl="https://qumo.io/"
alternateUrl="https://qumo.io/nl"
>
<main class="p-8 min-h-screen">
<h1 class="text-2xl font-bold uppercase mb-8 tracking-widest">Brand Smoke Test</h1>
<!-- Color Swatches -->
<section class="mb-10">
<h2 class="text-sm uppercase tracking-widest mb-4 opacity-50">Brand Colors</h2>
<div class="flex flex-wrap gap-4">
<div class="flex flex-col items-center gap-2">
<div class="w-24 h-24 rounded bg-midnight border border-snow/20"></div>
<span class="text-xs">Midnight<br/>#102022</span>
</div>
<div class="flex flex-col items-center gap-2">
<div class="w-24 h-24 rounded bg-snow"></div>
<span class="text-xs text-snow/70">Snow<br/>#F3F3F3</span>
</div>
<div class="flex flex-col items-center gap-2">
<div class="w-24 h-24 rounded bg-brand-blue"></div>
<span class="text-xs">Brand Blue<br/>#5257E4</span>
</div>
<div class="flex flex-col items-center gap-2">
<div class="w-24 h-24 rounded bg-brand-red"></div>
<span class="text-xs">Brand Red<br/>#F71E3E</span>
</div>
<div class="flex flex-col items-center gap-2">
<div class="w-24 h-24 rounded" style="background: var(--gradient-brand)"></div>
<span class="text-xs">Gradient<br/>Blue → Red</span>
</div>
</div>
</section>
<!-- Font Weight Samples -->
<section class="mb-10">
<h2 class="text-sm uppercase tracking-widest mb-4 opacity-50">Archia Weights</h2>
<table class="w-full max-w-2xl border-collapse">
<thead>
<tr class="text-xs uppercase tracking-widest opacity-50 border-b border-snow/20">
<th class="text-left pb-2 pr-8">Weight</th>
<th class="text-left pb-2 pr-8">Uppercase</th>
<th class="text-left pb-2">Sentence case</th>
</tr>
</thead>
<tbody class="font-archia">
<tr class="border-b border-snow/10">
<td class="py-3 pr-8 text-xs opacity-50">Thin 100</td>
<td class="py-3 pr-8 text-xl uppercase" style="font-weight: 100">QUMO DATA</td>
<td class="py-3 text-xl" style="font-weight: 100">Qumo data analytics</td>
</tr>
<tr class="border-b border-snow/10">
<td class="py-3 pr-8 text-xs opacity-50">Light 300</td>
<td class="py-3 pr-8 text-xl uppercase" style="font-weight: 300">QUMO DATA</td>
<td class="py-3 text-xl" style="font-weight: 300">Qumo data analytics</td>
</tr>
<tr class="border-b border-snow/10">
<td class="py-3 pr-8 text-xs opacity-50">Regular 400</td>
<td class="py-3 pr-8 text-xl uppercase font-normal">QUMO DATA</td>
<td class="py-3 text-xl font-normal">Qumo data analytics</td>
</tr>
<tr class="border-b border-snow/10">
<td class="py-3 pr-8 text-xs opacity-50">Medium 500</td>
<td class="py-3 pr-8 text-xl uppercase font-medium">QUMO DATA</td>
<td class="py-3 text-xl font-medium">Qumo data analytics</td>
</tr>
<tr class="border-b border-snow/10">
<td class="py-3 pr-8 text-xs opacity-50">SemiBold 600</td>
<td class="py-3 pr-8 text-xl uppercase font-semibold">QUMO DATA</td>
<td class="py-3 text-xl font-semibold">Qumo data analytics</td>
</tr>
<tr>
<td class="py-3 pr-8 text-xs opacity-50">Bold 700</td>
<td class="py-3 pr-8 text-xl uppercase font-bold">QUMO DATA</td>
<td class="py-3 text-xl font-bold">Qumo data analytics</td>
</tr>
</tbody>
</table>
</section>
<p class="text-xs opacity-30 uppercase tracking-widest">Dev artifact — will be replaced by the homepage</p>
</main>
</BaseLayout>