From e86c2aeb75d03222d2da5c082b2a0f603dd67260 Mon Sep 17 00:00:00 2001 From: Arsen Melikyan Date: Mon, 8 Jan 2024 20:19:06 +0400 Subject: [PATCH] Fix typos in the how-to-quickly-setup-a-blog blog post --- src/content/docs/blog/how-to-quickly-setup-a-blog.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/content/docs/blog/how-to-quickly-setup-a-blog.mdx b/src/content/docs/blog/how-to-quickly-setup-a-blog.mdx index ee6edce..0e71f9e 100644 --- a/src/content/docs/blog/how-to-quickly-setup-a-blog.mdx +++ b/src/content/docs/blog/how-to-quickly-setup-a-blog.mdx @@ -1,5 +1,5 @@ --- -title: "Astro, Startlight and GitHub Pages: How to quickly setup a blog" +title: "Astro, Starlight and GitHub Pages: How to quickly setup a blog" date: 2024-01-07 description: First blog post on melikyan.dev! tags: @@ -20,7 +20,7 @@ If you're interested in following my journey I invite you to read this article. Here is the list of tech I used to create this blog: - [Astro](https://astro.build/) - "a web framework for content-driven websites" -- [Starlight](https://starlight.js.org/) - an Astro template for building documentation websites +- [Starlight](https://starlight.astro.build/) - an Astro template for building documentation websites - [GitHub Pages](https://pages.github.com/) - a static site hosting service that takes HTML, CSS, and JavaScript files straight from a repository on GitHub. Conveniently, GitHub Pages supports custom domains, HTTPS, etc. and comes included in any GitHub plan. - [GitHub Actions](https://docs.github.com/en/actions) - a CI/CD tool that helps you automate your software development workflows - [Google Analytics](https://analytics.google.com/) - a web analytics service offered by Google that tracks and reports website traffic @@ -46,7 +46,7 @@ I also found out that [starlight-blog](https://github.com/HiDeoo/starlight-blog) [starlight-blog](https://github.com/HiDeoo/starlight-blog) actually required some [more work](https://github.com/bugron/bugron.github.io/commit/198655907405470434e18bdefedc4e9d7338cf49) to get it running with latest Astro versions, but everything seems to function nicely so far. -BTW I used Startlight's [theme editor](https://starlight.astro.build/guides/css-and-tailwind/#color-theme-editor) to customize the colors of my blog. It's pretty neat. +BTW I used Starlight's [theme editor](https://starlight.astro.build/guides/css-and-tailwind/#color-theme-editor) to customize the colors of my blog. It's pretty neat. ### GitHub Pages I decided to go with [GitHub Pages](https://pages.github.com/) as a hosting provider for the blog because it's easy to setup and maintain, and it supports custom domains and HTTPS. I also use GitHub for my code so it was a natural choice for me.