diff --git a/README.md b/README.md
index a7f86ec..f87b466 100644
--- a/README.md
+++ b/README.md
@@ -242,7 +242,8 @@ Clone this repository on own GitHub account and deploy to Vercel:
## Related projects
-- [Qwind](https://qwind.pages.dev/) - A template to make your website using Qwik + Tailwind CSS.
+- [TailNext](https://tailnext.vercel.app/) - Free template using Next.js 13 and Tailwind CSS with the new App Router.
+- [Qwind](https://qwind.pages.dev/) - Free template to make your website using Qwik + Tailwind CSS.
## Contributing
diff --git a/src/assets/styles/base.css b/src/assets/styles/base.css
index fe4e65f..19ec5d0 100644
--- a/src/assets/styles/base.css
+++ b/src/assets/styles/base.css
@@ -29,7 +29,7 @@
}
.btn-primary {
- @apply font-semibold bg-primary text-white border-primary hover:bg-blue-900 hover:border-blue-900 hover:text-white dark:text-white dark:bg-primary dark:border-primary dark:hover:border-blue-900 dark:hover:bg-blue-900;
+ @apply font-semibold bg-primary text-white border-primary hover:bg-secondary hover:border-secondary hover:text-white dark:text-white dark:bg-primary dark:border-primary dark:hover:border-secondary dark:hover:bg-secondary;
}
}
diff --git a/src/components/widgets/Hero.astro b/src/components/widgets/Hero.astro
index 122ebb8..f762d8d 100644
--- a/src/components/widgets/Hero.astro
+++ b/src/components/widgets/Hero.astro
@@ -52,7 +52,7 @@ const {
{callToAction?.icon && (
<>
- {' '}
+
>
)}
{callToAction?.text}
@@ -70,7 +70,7 @@ const {
{callToAction2?.icon && (
<>
- {' '}
+
>
)}
{callToAction2.text}
diff --git a/src/pages/index.astro b/src/pages/index.astro
index fb6f576..b0d0fcf 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -29,9 +29,8 @@ const meta = {
image={{ src: import('~/assets/images/hero.png'), alt: 'AstroWind Hero Image' }}
>
- Free template for create your website
with
- Astro 2.0 + Tailwind CSS
-
+ Free template for creating websites with
+ Astro 2.0 + Tailwind CSS
@@ -265,9 +264,9 @@ const meta = {
;
author?: string;
- Content: unknown;
+ Content: AstroComponentFactory;
content?: string;
readingTime?: number;