wip: more stuff

This commit is contained in:
2026-01-10 22:15:29 +00:00
parent 7c5c7691c3
commit 1828ae6353
13 changed files with 168 additions and 82 deletions

View File

@@ -1,12 +1,13 @@
---
import { config } from "../config";
interface Props {
introduction: string;
summary: string;
about: string;
license: string;
}
const { introduction, summary, about, license } = Astro.props;
const { introduction, summary, license } = Astro.props;
---
<section id="about" class="py-20 sm:py-28">
@@ -37,7 +38,7 @@ const { introduction, summary, about, license } = Astro.props;
<div class="spec-content prose-spec" set:html={summary} />
</div>
<!-- Author & License -->
<!-- Feedback & License -->
<div class="pt-8 border-t border-gray-200 dark:border-gray-800">
<div class="grid sm:grid-cols-2 gap-8">
<div>
@@ -45,12 +46,17 @@ const { introduction, summary, about, license } = Astro.props;
class="text-sm font-semibold uppercase tracking-wider mb-3
text-gray-500 dark:text-gray-500"
>
Author
Feedback
</h4>
<div
class="spec-content text-gray-600 dark:text-gray-400"
set:html={about}
/>
<p class="text-gray-600 dark:text-gray-400">
Please{" "}
<a
href={`${config.repoUrl}/issues`}
class="text-sky-600 hover:text-sky-400"
target="_blank"
rel="noopener noreferrer">open an issue on GitHub</a
>.
</p>
</div>
<div>
<h4