wip: getting close

This commit is contained in:
2026-01-10 22:40:47 +00:00
parent 1828ae6353
commit b22cf35953
21 changed files with 651 additions and 670 deletions

View File

@@ -16,7 +16,7 @@ const { introduction, summary, license } = Astro.props;
<!-- Section header -->
<div class="mb-12 text-center">
<h2 class="text-3xl sm:text-4xl mb-4">About Common-Flow</h2>
<p class="text-lg text-gray-600 dark:text-gray-400">
<p class="text-lg text-gray-600 dark:text-slate-400">
A practical git workflow that combines the best of GitHub Flow with
versioned releases
</p>
@@ -31,7 +31,7 @@ const { introduction, summary, license } = Astro.props;
<div class="mb-16">
<h3
class="text-xl font-display font-semibold mb-6
text-gray-950 dark:text-gray-50"
text-gray-950 dark:text-slate-50"
>
Key Principles
</h3>
@@ -39,16 +39,16 @@ const { introduction, summary, license } = Astro.props;
</div>
<!-- Feedback & License -->
<div class="pt-8 border-t border-gray-200 dark:border-gray-800">
<div class="pt-8 border-t border-gray-200 dark:border-slate-800">
<div class="grid sm:grid-cols-2 gap-8">
<div>
<h4
class="text-sm font-semibold uppercase tracking-wider mb-3
text-gray-500 dark:text-gray-500"
text-gray-500 dark:text-slate-500"
>
Feedback
</h4>
<p class="text-gray-600 dark:text-gray-400">
<p class="text-gray-600 dark:text-slate-400">
Please{" "}
<a
href={`${config.repoUrl}/issues`}
@@ -61,12 +61,12 @@ const { introduction, summary, license } = Astro.props;
<div>
<h4
class="text-sm font-semibold uppercase tracking-wider mb-3
text-gray-500 dark:text-gray-500"
text-gray-500 dark:text-slate-500"
>
License
</h4>
<div
class="spec-content text-gray-600 dark:text-gray-400"
class="spec-content text-gray-600 dark:text-slate-400"
set:html={license}
/>
</div>