step 002 complete
This commit is contained in:
@@ -1,17 +1,93 @@
|
||||
---
|
||||
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>
|
||||
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<meta name="generator" content={Astro.generator} />
|
||||
<title>Astro</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Astro</h1>
|
||||
</body>
|
||||
</html>
|
||||
<!-- 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>
|
||||
|
||||
Reference in New Issue
Block a user