From 7590d1d64bca412d1a45607aee8dd39ffe4ba6ff Mon Sep 17 00:00:00 2001
From: engage_intelllect <61082194+engageintellect@users.noreply.github.com>
Date: Sat, 11 Feb 2023 20:40:00 -0800
Subject: [PATCH 1/7] Hero text
fixing what looked like an error.
---
src/pages/index.astro | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/src/pages/index.astro b/src/pages/index.astro
index fb6f576..db4288b 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
-
+ A free template for creating beautiful websites with
+ Astro 2.0 + Tailwind CSS
@@ -265,9 +264,9 @@ const meta = {
Date: Wed, 15 Mar 2023 19:51:16 +0100
Subject: [PATCH 2/7] Use non-breaking space
In some cases during development or after building, "{' '}" appears. It's better to use the HTML entity instead.
---
src/components/widgets/Hero.astro | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
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}
From bf79ca406f72fa1681cb7b33cf3a90e31e565f18 Mon Sep 17 00:00:00 2001
From: Badr Bouslikhin
Date: Mon, 20 Mar 2023 20:05:50 +0100
Subject: [PATCH 3/7] fix: inherit button hover color from CustomStyles
---
src/assets/styles/base.css | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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;
}
}
From 655b910b6a4e29831dddf63fb3cf4903e7d06214 Mon Sep 17 00:00:00 2001
From: Maksim Valiantisuk
Date: Tue, 21 Mar 2023 13:21:06 +0100
Subject: [PATCH 4/7] add astro type for Post["Content"]
---
src/types.ts | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/types.ts b/src/types.ts
index 8191455..22f2862 100644
--- a/src/types.ts
+++ b/src/types.ts
@@ -1,3 +1,5 @@
+import { AstroComponentFactory } from 'astro/dist/runtime/server';
+
export interface Post {
id: string;
slug: string;
@@ -18,7 +20,7 @@ export interface Post {
tags?: Array;
author?: string;
- Content: unknown;
+ Content: AstroComponentFactory;
content?: string;
readingTime?: number;
From 48df1824c06897abd18134df4dd1b27ef0536e04 Mon Sep 17 00:00:00 2001
From: prototypa <54446028+prototypa@users.noreply.github.com>
Date: Thu, 11 May 2023 18:30:16 -0400
Subject: [PATCH 5/7] Update README.md
---
README.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index a7f86ec..3d6f6eb 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://qwind.pages.dev/](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
From 93cc017f3cd93431f7314449950f0f3832f80f50 Mon Sep 17 00:00:00 2001
From: prototypa <54446028+prototypa@users.noreply.github.com>
Date: Thu, 11 May 2023 18:31:28 -0400
Subject: [PATCH 6/7] Update README.md
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 3d6f6eb..f87b466 100644
--- a/README.md
+++ b/README.md
@@ -242,7 +242,7 @@ Clone this repository on own GitHub account and deploy to Vercel:
## Related projects
-- [TailNext]([https://qwind.pages.dev/](https://tailnext.vercel.app/)) - Free template using Next.js 13 and Tailwind CSS with the new App Router.
+- [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
From 6976ab48a0115db68babb91b5e9953d62d71a025 Mon Sep 17 00:00:00 2001
From: prototypa <54446028+prototypa@users.noreply.github.com>
Date: Fri, 19 May 2023 14:20:36 -0400
Subject: [PATCH 7/7] Update index.astro
---
src/pages/index.astro | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pages/index.astro b/src/pages/index.astro
index db4288b..b0d0fcf 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -29,7 +29,7 @@ const meta = {
image={{ src: import('~/assets/images/hero.png'), alt: 'AstroWind Hero Image' }}
>
- A free template for creating beautiful websites with
+ Free template for creating websites with
Astro 2.0 + Tailwind CSS