diff --git a/README.md b/README.md index 51ea679..ebcc0e9 100644 --- a/README.md +++ b/README.md @@ -110,3 +110,5 @@ TailwindCSS & Alpine.js are already configured in this repo, so you can start us ## 👀 Want to learn more? Feel free to check out [Astro Docs](https://docs.astro.build) or jump into our [Discord Chat](https://web3templates.com/discord). + +[![Built with Astro](https://astro.badg.es/v1/built-with-astro.svg)](https://astro.build) diff --git a/src/components/hero.astro b/src/components/hero.astro index 05aea12..0e31927 100644 --- a/src/components/hero.astro +++ b/src/components/hero.astro @@ -2,6 +2,7 @@ import { Image } from "@astrojs/image/components"; import heroImage from "assets/hero.png"; import Link from "@components/ui/link.astro"; +import { Icon } from "astro-icon"; ---
@@ -25,16 +26,23 @@ import Link from "@components/ui/link.astro";
Get Started + + + Download for Free View Repo + + Github Repo
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index e89ceb3..2da2905 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -16,6 +16,10 @@ export interface Props { // console.log(src); const resolvedImageWithDomain = new URL("/opengraph.jpg", Astro.url).toString(); const { title } = Astro.props; + +const makeTitle = title + ? title + " | " + "Astroship" + : "Astroship - Starter Template for Astro with TailwindCSS & Alpine.js"; --- @@ -28,7 +32,7 @@ const { title } = Astro.props;