From 6d79e7f1c8835a730920b65a058d3ab4ce0152f3 Mon Sep 17 00:00:00 2001 From: development Date: Fri, 6 Feb 2026 13:25:11 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 5c5261e..363ab22 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,8 +33,10 @@ export default function Page() { { name: "Products", id: "products" }, { name: "About", id: "about" }, { name: "Testimonials", id: "testimonials" }, - { name: "Contact", id: "contact" } - ]} + { name: "Contact", id: "contact" }, + + { name: "Blog", id: "/blog" }, +]} button={{ text: "Order Now", href: "contact" }} -- 2.49.1 From 809d70ac3d5bb4ca6f9c5cf4e92f82d0ee82ce5b Mon Sep 17 00:00:00 2001 From: development Date: Fri, 6 Feb 2026 16:36:51 +0000 Subject: [PATCH 2/2] Update theme colors --- src/app/styles/variables.css | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 577d754..6d3b0c3 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -2,21 +2,21 @@ /* Base units */ /* --vw is set by ThemeProvider */ - /* --background: #f5f4ef; - --card: #dad6cd; - --foreground: #2a2928; - --primary-cta: #2a2928; - --secondary-cta: #ecebea; - --accent: #ffffff; - --background-accent: #ffffff; */ + /* --background: #0a0a0a;; + --card: #1a1a1a;; + --foreground: #fff5f5;; + --primary-cta: #ff7a7a;; + --secondary-cta: #1a1a1a;; + --accent: #737373;; + --background-accent: #737373;; */ - --background: #fcf6ec; - --card: #f3ede2; - --foreground: #2e2521; - --primary-cta: #2e2521; - --secondary-cta: #ffffff; - --accent: #b2a28b; - --background-accent: #b2a28b; + --background: #0a0a0a;; + --card: #1a1a1a;; + --foreground: #fff5f5;; + --primary-cta: #ff7a7a;; + --secondary-cta: #1a1a1a;; + --accent: #737373;; + --background-accent: #737373;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1