Samuel Shuert | 86826b8 | 2024-04-27 16:14:20 -0400 | [diff] [blame^] | 1 | --- |
| 2 | import BaseHead from '../components/BaseHead.astro'; |
| 3 | import Header from '../components/Header.astro'; |
| 4 | import Footer from '../components/Footer.astro'; |
| 5 | import { SITE_TITLE, SITE_DESCRIPTION } from '../consts'; |
| 6 | --- |
| 7 | |
| 8 | <!doctype html> |
| 9 | <html lang="en"> |
| 10 | <head> |
| 11 | <BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} /> |
| 12 | </head> |
| 13 | <body> |
| 14 | <Header /> |
| 15 | <main> |
| 16 | <h1>🧑🚀 Hello, Astronaut!</h1> |
| 17 | <p> |
| 18 | Welcome to the official <a href="https://astro.build/">Astro</a> blog starter template. This |
| 19 | template serves as a lightweight, minimally-styled starting point for anyone looking to build |
| 20 | a personal website, blog, or portfolio with Astro. |
| 21 | </p> |
| 22 | <p> |
| 23 | This template comes with a few integrations already configured in your |
| 24 | <code>astro.config.mjs</code> file. You can customize your setup with |
| 25 | <a href="https://astro.build/integrations">Astro Integrations</a> to add tools like Tailwind, |
| 26 | React, or Vue to your project. |
| 27 | </p> |
| 28 | <p>Here are a few ideas on how to get started with the template:</p> |
| 29 | <ul> |
| 30 | <li>Edit this page in <code>src/pages/index.astro</code></li> |
| 31 | <li>Edit the site header items in <code>src/components/Header.astro</code></li> |
| 32 | <li>Add your name to the footer in <code>src/components/Footer.astro</code></li> |
| 33 | <li>Check out the included blog posts in <code>src/content/blog/</code></li> |
| 34 | <li>Customize the blog post page layout in <code>src/layouts/BlogPost.astro</code></li> |
| 35 | </ul> |
| 36 | <p> |
| 37 | Have fun! If you get stuck, remember to <a href="https://docs.astro.build/" |
| 38 | >read the docs |
| 39 | </a> or <a href="https://astro.build/chat">join us on Discord</a> to ask questions. |
| 40 | </p> |
| 41 | <p> |
| 42 | Looking for a blog template with a bit more personality? Check out <a |
| 43 | href="https://github.com/Charca/astro-blog-template" |
| 44 | >astro-blog-template |
| 45 | </a> by <a href="https://twitter.com/Charca">Maxi Ferreira</a>. |
| 46 | </p> |
| 47 | </main> |
| 48 | <Footer /> |
| 49 | </body> |
| 50 | </html> |