Skip to content

Commit 2ad7279

Browse files
committed
refactor: update page background colors to base-100 and reorder tools page sections
1 parent 675c922 commit 2ad7279

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

src/pages/compare.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const planData = allPlans.map(plan => ({
6262
</section>
6363

6464
<!-- Comparison Matrix -->
65-
<section class="py-8 bg-base-200">
65+
<section class="py-8 bg-base-100">
6666
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
6767
<ComparisonMatrix client:load plans={planData} />
6868
</div>

src/pages/models/[slug].astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const formatContextWindow = (tokens: number): string => {
3434
>
3535
<Navbar />
3636

37-
<main class="min-h-screen bg-base-200">
37+
<main class="min-h-screen bg-base-100">
3838
<!-- Breadcrumbs -->
3939
<div class="max-w-5xl mx-auto px-4 sm:px-6 lg:px-8 pt-6">
4040
<nav aria-label="Breadcrumb">

src/pages/models/index.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const providers = [...new Set(allModels.map(m => m.data.provider))].sort();
4040
</section>
4141

4242
<!-- Filters & Grid -->
43-
<section class="py-8 bg-base-200">
43+
<section class="py-8 bg-base-100">
4444
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
4545
<div class="flex flex-col sm:flex-row items-start sm:items-center justify-between gap-4 mb-6">
4646
<p class="text-sm text-base-content/60">

src/pages/plans/[slug].astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ const getUptimeColor = (pct?: number) => {
132132

133133
<Navbar />
134134

135-
<main class="min-h-screen bg-base-200">
135+
<main class="min-h-screen bg-base-100">
136136
<div class="max-w-5xl mx-auto px-4 sm:px-6 lg:px-8 pt-6">
137137
<nav aria-label="Breadcrumb">
138138
<ol class="flex items-center gap-2 text-sm">

src/pages/plans/index.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ const planDataForFilter = allPlans.map(plan => ({
6666
</section>
6767

6868
<!-- Filter Bar + Plan Grid -->
69-
<section class="py-8 bg-base-200">
69+
<section class="py-8 bg-base-100">
7070
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
7171
<!-- FilterBar React Island -->
7272
<div class="mb-6">

src/pages/tools/index.astro

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,8 @@ const sortedTools = [...allTools].sort((a, b) => a.data.name.localeCompare(b.dat
3737
</div>
3838
</section>
3939

40-
<!-- Compatibility Matrix -->
41-
<section class="py-8">
42-
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
43-
<CompatibilityMatrix />
44-
</div>
45-
</section>
46-
4740
<!-- Grid -->
48-
<section class="py-8 bg-base-200">
41+
<section class="py-8 bg-base-100">
4942
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
5043
<div class="flex items-center justify-between mb-6">
5144
<div>
@@ -68,6 +61,13 @@ const sortedTools = [...allTools].sort((a, b) => a.data.name.localeCompare(b.dat
6861
</div>
6962
</div>
7063
</section>
64+
65+
<!-- Compatibility Matrix -->
66+
<section class="py-8">
67+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
68+
<CompatibilityMatrix />
69+
</div>
70+
</section>
7171
</main>
7272

7373
<Footer />

0 commit comments

Comments
 (0)