Skip to content

Commit 17cc4c7

Browse files
bchapuisclaude
andcommitted
Subtly darken navbar and full-width sections
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 7e65ab8 commit 17cc4c7

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

apps/www/src/components/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export function Layout({ children, navigation }: LayoutProps) {
1919

2020
return (
2121
<div className="min-h-screen bg-stone-100 bg-dot-grid flex flex-col overflow-x-clip">
22-
<header className="sticky top-0 z-50 w-full px-6 py-4 bg-stone-100/60 backdrop-blur-md backdrop-saturate-150 border-b border-white/20 shadow-sm supports-[backdrop-filter]:bg-stone-100/50">
22+
<header className="sticky top-0 z-50 w-full px-6 py-4 bg-[#f1f1ef]/60 backdrop-blur-md backdrop-saturate-150 border-b border-gray-200 supports-[backdrop-filter]:bg-[#f1f1ef]/50">
2323
<div className="flex items-center justify-between">
2424
<a href="/" className="flex items-center gap-3">
2525
<img src="/icon.svg" alt="Dafthunk" className="h-8 w-8" />

apps/www/src/routes/home.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ export default function Home() {
112112
</section>
113113

114114
<section
115-
className="relative left-1/2 right-1/2 w-screen -ml-[50vw] -mr-[50vw] py-24 bg-stone-100 border-y border-gray-200"
115+
className="relative left-1/2 right-1/2 w-screen -ml-[50vw] -mr-[50vw] py-24 bg-[#f1f1ef] border-y border-gray-200"
116116
aria-label="Built on and integrates with"
117117
>
118118
<div className="max-w-screen-2xl mx-auto px-6 flex flex-col lg:flex-row lg:items-center gap-6 lg:gap-16">
@@ -127,7 +127,6 @@ export default function Home() {
127127
"Google",
128128
"GitHub",
129129
"Discord",
130-
"Gmail",
131130
].map((name) => (
132131
<span
133132
key={name}
@@ -267,7 +266,7 @@ export default function Home() {
267266
</section>
268267

269268
<section
270-
className="relative left-1/2 right-1/2 w-screen -ml-[50vw] -mr-[50vw] py-24 bg-stone-100 border-y border-gray-200"
269+
className="relative left-1/2 right-1/2 w-screen -ml-[50vw] -mr-[50vw] py-24 bg-[#f1f1ef] border-y border-gray-200"
271270
aria-label="Platform statistics"
272271
>
273272
<div className="max-w-screen-2xl mx-auto px-6 grid grid-cols-2 md:grid-cols-4 gap-12 text-center">

0 commit comments

Comments
 (0)