diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 7cb3bec..4eaca9f 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -11,6 +11,7 @@ export default function AboutPage() { { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, + { name: "Blog", id: "/blog" }, { name: "Contact", id: "/contact" } ]; diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 9895fc3..c787ba8 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -10,6 +10,7 @@ export default function BlogPage() { { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, + { name: "Blog", id: "/blog" }, { name: "Contact", id: "/contact" } ]; diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 776cd22..79e6cea 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -11,6 +11,7 @@ export default function ContactPage() { { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, + { name: "Blog", id: "/blog" }, { name: "Contact", id: "/contact" } ]; diff --git a/src/app/page.tsx b/src/app/page.tsx index 36389f9..0520592 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -15,6 +15,7 @@ export default function HomePage() { { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, + { name: "Blog", id: "/blog" }, { name: "Contact", id: "/contact" } ]; diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx index 0f80aa5..0379014 100644 --- a/src/app/products/page.tsx +++ b/src/app/products/page.tsx @@ -10,6 +10,7 @@ export default function ProductsPage() { { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, + { name: "Blog", id: "/blog" }, { name: "Contact", id: "/contact" } ]; diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 5406ef6..e533e46 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -9,6 +9,7 @@ export default function ProductPage({ params }: { params: { id: string } }) { { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, + { name: "Blog", id: "/blog" }, { name: "Contact", id: "/contact" } ]; @@ -73,4 +74,4 @@ export default function ProductPage({ params }: { params: { id: string } }) { ); -} +} \ No newline at end of file diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 5ab5987..ce6a37a 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -10,6 +10,7 @@ export default function ShopPage() { { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, + { name: "Blog", id: "/blog" }, { name: "Contact", id: "/contact" } ]; @@ -85,4 +86,4 @@ export default function ShopPage() { ); -} +} \ No newline at end of file diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 8ffff17..993285e 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -2,23 +2,23 @@ /* Base units */ /* --vw is set by ThemeProvider */ - /* --background: #f7f6f7;; - --card: #ffffff;; - --foreground: #032419;; - --primary-cta: #2bb889;; - --secondary-cta: #ffffff;; - --accent: #09b97e;; - --background-accent: #a8e8c3;; */ + /* --background: #0a0a0a;; + --card: #1a1a1a;; + --foreground: #ffffffe6;; + --primary-cta: #e6e6e6;; + --secondary-cta: #1a1a1a;; + --accent: #737373;; + --background-accent: #737373;; */ - --background: #f7f6f7;; - --card: #ffffff;; - --foreground: #032419;; - --primary-cta: #2bb889;; - --primary-cta-text: #f7f6f7;; - --secondary-cta: #ffffff;; - --secondary-cta-text: #032419;; - --accent: #09b97e;; - --background-accent: #a8e8c3;; + --background: #0a0a0a;; + --card: #1a1a1a;; + --foreground: #ffffffe6;; + --primary-cta: #e6e6e6;; + --primary-cta-text: #0a0a0a;; + --secondary-cta: #1a1a1a;; + --secondary-cta-text: #ffffffe6;; + --accent: #737373;; + --background-accent: #737373;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);