🚧💄 de frontpage look better, still wip

This commit is contained in:
SindreKjelsrud 2023-08-22 16:07:56 +02:00
parent 08d2cc46d0
commit d6d2b820f8
2 changed files with 15 additions and 35 deletions

BIN
public/assets/pb.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 165 KiB

View file

@ -11,40 +11,20 @@ import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
<BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} /> <BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} />
</head> </head>
<body> <body>
<Header title={SITE_TITLE} /> <div class="flex flex-col fixed w-screen">
<main> <Header title={SITE_TITLE} />
<h1>🧑‍🚀 Hello, Astronaut!</h1> <main class="flex flex-col justify-center items-center p-48">
<p> <!-- Local image stored at public/assets/stars.png -->
Welcome to the official <a href="https://astro.build/">Astro</a> blog starter template. This <img class="w-40 rounded-full" src="/assets/pb.jpg" alt="Profile picture of me.">
template serves as a lightweight, minimally-styled starting point for anyone looking to build
a personal website, blog, or portfolio with Astro. <h1>🧑‍🚀 Hello, Astronaut!</h1>
</p> <p class="max-w-md">
<p> Welcome to the official <a href="https://astro.build/">Astro</a> blog starter template. This
This template comes with a few integrations already configured in your template serves as a lightweight, minimally-styled starting point for anyone looking to build
<code>astro.config.mjs</code> file. You can customize your setup with a personal website, blog, or portfolio with Astro.
<a href="https://astro.build/integrations">Astro Integrations</a> to add tools like Tailwind, </p>
React, or Vue to your project. </main>
</p> <Footer />
<p>Here are a few ideas on how to get started with the template:</p> </div>
<ul>
<li>Edit this page in <code>src/pages/index.astro</code></li>
<li>Edit the site header items in <code>src/components/Header.astro</code></li>
<li>Add your name to the footer in <code>src/components/Footer.astro</code></li>
<li>Check out the included blog posts in <code>src/pages/blog/</code></li>
<li>Customize the blog post page layout in <code>src/layouts/BlogPost.astro</code></li>
</ul>
<p>
Have fun! If you get stuck, remember to <a href="https://docs.astro.build/"
>read the docs
</a> or <a href="https://astro.build/chat">join us on Discord</a> to ask questions.
</p>
<p>
Looking for a blog template with a bit more personality? Check out <a
href="https://github.com/Charca/astro-blog-template"
>astro-blog-template
</a> by <a href="https://twitter.com/Charca">Maxi Ferreira</a>.
</p>
</main>
<Footer />
</body> </body>
</html> </html>