diff options
| author | Dawid Rycerz <dawid@rycerz.xyz> | 2025-07-03 10:56:21 +0300 |
|---|---|---|
| committer | Dawid Rycerz <dawid@rycerz.xyz> | 2025-07-03 10:56:21 +0300 |
| commit | 456cf011b36de91c9936994b1fa45703adcd309b (patch) | |
| tree | 8e60daf998f731ac50d100fa490eaecae1168042 /src/pages/about.astro | |
Initial fork of chrismwilliams/astro-theme-cactus theme
Diffstat (limited to 'src/pages/about.astro')
| -rw-r--r-- | src/pages/about.astro | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/pages/about.astro b/src/pages/about.astro new file mode 100644 index 0000000..190bbd3 --- /dev/null +++ b/src/pages/about.astro @@ -0,0 +1,36 @@ +--- +import PageLayout from "@/layouts/Base.astro"; + +const meta = { + description: "I'm a starter theme for Astro.build", + title: "About", +}; +--- + +<PageLayout meta={meta}> + <h1 class="title mb-6">About</h1> + <div class="prose prose-sm prose-cactus max-w-none"> + <p> + Hi, I’m a starter Astro. I’m particularly great for getting you started with your own blogging + website. + </p> + <p>Here are my some of my awesome built in features:</p> + <ul class="list-inside list-disc" role="list"> + <li>I'm ultra fast as I'm a static site</li> + <li>I'm fully responsive</li> + <li>I come with a light and dark mode</li> + <li>I'm easy to customise and add additional content</li> + <li>I have Tailwind CSS styling</li> + <li>Shiki code syntax highlighting</li> + <li>Satori for auto generating OG images for blog posts</li> + </ul> + <p> + Clone or fork my <a + class="cactus-link inline-block" + href="https://github.com/chrismwilliams/astro-cactus" + rel="noreferrer" + target="_blank">repo</a + > if you like me! + </p> + </div> +</PageLayout> |
