diff --git a/components/Card.tsx b/components/Card.tsx
index 1ae920e009..2c750fcd49 100644
--- a/components/Card.tsx
+++ b/components/Card.tsx
@@ -6,7 +6,7 @@ const Card = ({ title, description, imgSrc, href }) => (
{imgSrc &&
(href ? (
@@ -14,7 +14,7 @@ const Card = ({ title, description, imgSrc, href }) => (
diff --git a/components/Header.tsx b/components/Header.tsx
index 3378b043e0..316f0a0cc5 100644
--- a/components/Header.tsx
+++ b/components/Header.tsx
@@ -15,10 +15,8 @@ const Header = () => {
return (
-
-
-
-
+
+
{typeof siteMetadata.headerTitle === 'string' ? (
{siteMetadata.headerTitle}
diff --git a/css/tailwind.css b/css/tailwind.css
index 5a8a4c2f15..fac9ee0f73 100644
--- a/css/tailwind.css
+++ b/css/tailwind.css
@@ -173,3 +173,7 @@ input:-webkit-autofill:focus {
display: inline-block;
vertical-align: middle;
}
+
+button {
+ cursor: pointer;
+}
\ No newline at end of file
diff --git a/layouts/ListLayoutWithTags.tsx b/layouts/ListLayoutWithTags.tsx
index bfbb3b7959..23e763bb40 100644
--- a/layouts/ListLayoutWithTags.tsx
+++ b/layouts/ListLayoutWithTags.tsx
@@ -44,6 +44,7 @@ function Pagination({ totalPages, currentPage }: PaginationProps) {
Previous
@@ -57,7 +58,11 @@ function Pagination({ totalPages, currentPage }: PaginationProps) {
)}
{nextPage && (
-
+
Next
)}