Skip to content

Commit 1486ed2

Browse files
committed
fix: darken section dividers on docs page (gray-100 → gray-200)
1 parent 38f8d0b commit 1486ed2

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

apps/web/app/docs/page.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ export default function DocsPage() {
132132
</a>
133133
))}
134134
</nav>
135-
<div className="mt-6 pt-4 border-t border-gray-100">
135+
<div className="mt-6 pt-4 border-t border-gray-200">
136136
<Link href="/" className="text-xs text-gray-400 hover:text-orange-500 transition-colors px-2">
137137
← Back home
138138
</Link>
@@ -153,7 +153,7 @@ export default function DocsPage() {
153153

154154
{/* Overview */}
155155
<section id="overview" className="scroll-mt-20 flex flex-col gap-5">
156-
<h2 className="text-xl font-bold text-gray-900 pb-2 border-b border-gray-100">Overview</h2>
156+
<h2 className="text-xl font-bold text-gray-900 pb-2 border-b border-gray-200">Overview</h2>
157157
<p className="text-gray-600 leading-relaxed">
158158
<strong>c0upons</strong> is an open-source, community-powered coupon platform.
159159
Browse and submit deals for free on the web, or use the CLI and API to integrate
@@ -176,7 +176,7 @@ export default function DocsPage() {
176176

177177
{/* CLI */}
178178
<section id="cli" className="scroll-mt-20 flex flex-col gap-5">
179-
<h2 className="text-xl font-bold text-gray-900 pb-2 border-b border-gray-100">CLI</h2>
179+
<h2 className="text-xl font-bold text-gray-900 pb-2 border-b border-gray-200">CLI</h2>
180180
<p className="text-gray-600 leading-relaxed">
181181
The <IC>c0upons</IC> CLI is a bash script that works on macOS and Linux.
182182
Requires <IC>curl</IC> and <IC>jq</IC>.
@@ -258,7 +258,7 @@ export default function DocsPage() {
258258

259259
{/* API */}
260260
<section id="api" className="scroll-mt-20 flex flex-col gap-5">
261-
<h2 className="text-xl font-bold text-gray-900 pb-2 border-b border-gray-100">REST API</h2>
261+
<h2 className="text-xl font-bold text-gray-900 pb-2 border-b border-gray-200">REST API</h2>
262262
<p className="text-gray-600 leading-relaxed">
263263
No authentication required for read operations. Base URL:{' '}
264264
<IC>https://c0upons.com/api</IC>
@@ -331,7 +331,7 @@ export default function DocsPage() {
331331

332332
{/* Contributing */}
333333
<section id="contributing" className="scroll-mt-20 flex flex-col gap-5">
334-
<h2 className="text-xl font-bold text-gray-900 pb-2 border-b border-gray-100">Contributing</h2>
334+
<h2 className="text-xl font-bold text-gray-900 pb-2 border-b border-gray-200">Contributing</h2>
335335
<p className="text-gray-600 leading-relaxed">
336336
c0upons is open source. Contributions are welcome — submit coupons via the web, report
337337
bugs, or open a pull request.

0 commit comments

Comments
 (0)