diff --git a/src/pages/[productLookup].astro b/src/pages/[productLookup].astro index 31e1944..a039f52 100644 --- a/src/pages/[productLookup].astro +++ b/src/pages/[productLookup].astro @@ -72,6 +72,9 @@ const category = categories[product.categoryId];

Dasher Supply is not endorsed by or affiliated with DoorDash. As an Amazon Associate I earn from qualifying purchases.

+
+ About this site. +
@@ -145,5 +148,5 @@ const category = categories[product.categoryId]; padding: 0; } a, a:link, a:visited { text-decoration: none; } - a:hover { text-decoration: underline; color: #fff } + a:hover, a:active { text-decoration: underline; color: #fff } diff --git a/src/pages/about.astro b/src/pages/about.astro index 2cbe39c..2320800 100644 --- a/src/pages/about.astro +++ b/src/pages/about.astro @@ -7,14 +7,14 @@ import { categories } from '../data/categories';
-

Dasher Supply

+

Dasher Supply > About

Your one-stop shop for all your after-market Dasher supplies.

- Dasher Supply is a concept niche wish for delivery drivers. + Dasher Supply is a concept niche wish for delivery drivers curated by David A. Ball.

Dasher Supply strives to keep the latest and best quality accesories to help you along your route. @@ -22,6 +22,9 @@ import { categories } from '../data/categories';

Dasher Supply is not endorsed by or affiliated with DoorDash. As an Amazon Associate I earn from qualifying purchases.

+
+ About this site. +
@@ -94,4 +97,6 @@ import { categories } from '../data/categories'; gap: 2rem; padding: 0; } + a, a:link, a:visited { text-decoration: none; color: #fff } + a:hover, a:active { text-decoration: underline; color: #fff } diff --git a/src/pages/category/[categoryLookup].astro b/src/pages/category/[categoryLookup].astro index 88d8c82..22e4666 100644 --- a/src/pages/category/[categoryLookup].astro +++ b/src/pages/category/[categoryLookup].astro @@ -38,6 +38,9 @@ const categoryProducts = products.filter(p => p.categoryId === category.id)!;

Dasher Supply is not endorsed by or affiliated with DoorDash. As an Amazon Associate I earn from qualifying purchases.

+
+ About this site. +
@@ -110,6 +113,6 @@ const categoryProducts = products.filter(p => p.categoryId === category.id)!; gap: 2rem; padding: 0; } - a, a:link, a:visited { text-decoration: none; } + a, a:link, a:visited { text-decoration: none; color: #fff } a:hover, a:active { text-decoration: underline; color: #fff } diff --git a/src/pages/index.astro b/src/pages/index.astro index f90c540..04b1338 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -20,6 +20,9 @@ import { categories } from '../data/categories';

Dasher Supply is not endorsed by or affiliated with DoorDash. As an Amazon Associate I earn from qualifying purchases.

+
+ About this site. +
@@ -92,4 +95,6 @@ import { categories } from '../data/categories'; gap: 2rem; padding: 0; } + a, a:link, a:visited { text-decoration: none; color: #fff } + a:hover { text-decoration: underline; color: #fff }