From 84d9e71b63cdaaa095bbcf91b475171793ffa06d Mon Sep 17 00:00:00 2001 From: gitea Date: Wed, 19 Nov 2025 22:31:38 +0100 Subject: [PATCH] done --- app/globals.css | 16 +- app/page.tsx | 2 - components/Contact.tsx | 36 ++-- components/Footer.tsx | 22 +- components/Hero.tsx | 46 ++--- components/Navigation.tsx | 17 +- components/Values.tsx | 413 +++++++++++++++++++++++++++++++------- 7 files changed, 420 insertions(+), 132 deletions(-) diff --git a/app/globals.css b/app/globals.css index 37ae37d..dbf9702 100644 --- a/app/globals.css +++ b/app/globals.css @@ -3,6 +3,10 @@ :root { --background: #ffffff; --foreground: #171717; + --color-brown: #7D6E5E; + --color-pink: #EED2CC; + --color-cream: #FBF7F4; + --color-navy: #00171F; } body { @@ -26,10 +30,18 @@ html { } ::-webkit-scrollbar-thumb { - background: #ea580c; + background: #7D6E5E; border-radius: 5px; } ::-webkit-scrollbar-thumb:hover { - background: #c2410c; + background: #5d5247; +} + +/* Form input focus styles */ +input:focus, +textarea:focus { + border-color: #7D6E5E !important; + box-shadow: 0 0 0 2px rgba(125, 110, 94, 0.2) !important; + outline: none; } diff --git a/app/page.tsx b/app/page.tsx index c792607..7978e1f 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,6 +1,5 @@ import Navigation from '@/components/Navigation'; import Hero from '@/components/Hero'; -import About from '@/components/About'; import Values from '@/components/Values'; import Contact from '@/components/Contact'; import Footer from '@/components/Footer'; @@ -10,7 +9,6 @@ export default function Home() {
-