12 Commits

Author SHA1 Message Date
4ca455a3df Update src/app/styles/variables.css 2026-02-22 12:18:58 +00:00
7b76914b3a Update src/app/shop/page.tsx 2026-02-22 12:18:57 +00:00
22c0fa565e Update src/app/shop/[id]/page.tsx 2026-02-22 12:18:57 +00:00
46ce80ad1d Update src/app/products/page.tsx 2026-02-22 12:18:57 +00:00
b83354a7b9 Update src/app/page.tsx 2026-02-22 12:18:56 +00:00
c64455eee5 Update src/app/contact/page.tsx 2026-02-22 12:18:56 +00:00
440a8069ed Update src/app/blog/page.tsx 2026-02-22 12:18:55 +00:00
2c1a2a4c65 Update src/app/about/page.tsx 2026-02-22 12:18:55 +00:00
baaeb3c940 Merge version_1 into main
Merge version_1 into main
2026-02-22 12:16:27 +00:00
448d9bd779 Merge version_1 into main
Merge version_1 into main
2026-02-22 12:15:46 +00:00
2f28e442bb Merge version_1 into main
Merge version_1 into main
2026-02-22 12:13:34 +00:00
a27d90df7c Merge version_1 into main
Merge version_1 into main
2026-02-22 12:10:43 +00:00
8 changed files with 25 additions and 18 deletions

View File

@@ -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" }
];

View File

@@ -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" }
];

View File

@@ -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" }
];

View File

@@ -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" }
];

View File

@@ -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" }
];

View File

@@ -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 } }) {
</div>
</ThemeProvider>
);
}
}

View File

@@ -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() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -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);