summaryrefslogtreecommitdiff
path: root/src/components/widgets/Pricing.astro
diff options
context:
space:
mode:
authorDawid Rycerz <dawid@rycerz.xyz>2025-08-05 19:59:36 +0300
committerDawid Rycerz <dawid@rycerz.xyz>2025-08-05 19:59:36 +0300
commit2452e045d32994ccd00f16e5dbc9a2d97d697a70 (patch)
tree7d9d646344a76cabd2ef900e947d3af2abbad8ed /src/components/widgets/Pricing.astro
parentfd3f0b9f1bfce7459d2681498670c31cde0f3091 (diff)
feat: various fixes
Diffstat (limited to 'src/components/widgets/Pricing.astro')
-rw-r--r--src/components/widgets/Pricing.astro18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/components/widgets/Pricing.astro b/src/components/widgets/Pricing.astro
index b0c2fa1..8333fde 100644
--- a/src/components/widgets/Pricing.astro
+++ b/src/components/widgets/Pricing.astro
@@ -26,7 +26,7 @@ const {
classes={{
container: 'max-w-xl sm:mx-auto lg:max-w-2xl',
title: 'text-4xl md:text-5xl font-bold tracking-tighter mb-4 font-heading',
- subtitle: 'max-w-3xl mx-auto sm:text-center text-xl text-muted dark:text-slate-400',
+ subtitle: 'max-w-3xl mx-auto sm:text-center text-xl text-muted dark:text-slate-800',
}}
/>
<div class="mt-12">
@@ -39,15 +39,15 @@ const {
.filter((_, index) => index % 2 === 0)
.map((item) => (
<div class="mb-8">
- {item.title && <h3 class="text-lg font-bold leading-6 dark:text-white mb-4">{item.title}</h3>}
- <hr class="mb-8 border-2" />
+ {item.title && <h3 class="text-lg font-bold leading-6 mb-4">{item.title}</h3>}
+ <hr class="mb-8 border-1 shadow-sm border-black" />
{item.entries && item.entries.length > 0 && (
<table class="w-full border-collapse">
<tbody>
{item.entries.map((entry) => (
<tr class="h-12">
- <td class="w-1/2 h-12 px-4 text-muted dark:text-slate-400" set:html={entry.description} />
- <td class="w-1/2 text-right h-12 px-4 text-muted dark:text-slate-400">{entry.price}</td>
+ <td class="w-1/2 h-12 px-4 text-muted dark:text-slate-800" set:html={entry.description} />
+ <td class="w-1/2 text-right h-12 px-4 text-muted dark:text-slate-800">{entry.price}</td>
</tr>
))}
</tbody>
@@ -66,14 +66,14 @@ const {
.map((item) => (
<div class="mb-8">
{item.title && <h3 class="text-lg font-bold leading-6 dark:text-white mb-4">{item.title}</h3>}
- <hr class="mb-8 border-2" />
+ <hr class="mb-8 border-1 shadow-sm border-black" />
{item.entries && item.entries.length > 0 && (
<table class="w-full border-collapse">
<tbody>
{item.entries.map((entry) => (
<tr class="h-12">
- <td class="w-1/2 h-12 px-4 text-muted dark:text-slate-400" set:html={entry.description} />
- <td class="w-1/2 text-right h-12 px-4 text-muted dark:text-slate-400">{entry.price}</td>
+ <td class="w-1/2 h-12 px-4 text-muted dark:text-slate-800" set:html={entry.description} />
+ <td class="w-1/2 text-right h-12 px-4 text-muted dark:text-slate-800">{entry.price}</td>
</tr>
))}
</tbody>
@@ -89,7 +89,7 @@ const {
<div class="mt-12 text-center">
{
(await Astro.slots.render('disclaimer')) && (
- <div class="text-xs text-muted dark:text-slate-400 mb-8" set:html={await Astro.slots.render('disclaimer')} />
+ <div class="text-xs text-muted dark:text-slate-800 mb-8" set:html={await Astro.slots.render('disclaimer')} />
)
}