Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4ca455a3df | |||
| 7b76914b3a | |||
| 22c0fa565e | |||
| 46ce80ad1d | |||
| b83354a7b9 | |||
| c64455eee5 | |||
| 440a8069ed | |||
| 2c1a2a4c65 | |||
| baaeb3c940 | |||
| 448d9bd779 | |||
| 2f28e442bb | |||
| a27d90df7c |
@@ -11,6 +11,7 @@ export default function AboutPage() {
|
|||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Products", id: "/products" },
|
{ name: "Products", id: "/products" },
|
||||||
{ name: "About", id: "/about" },
|
{ name: "About", id: "/about" },
|
||||||
|
{ name: "Blog", id: "/blog" },
|
||||||
{ name: "Contact", id: "/contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ export default function BlogPage() {
|
|||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Products", id: "/products" },
|
{ name: "Products", id: "/products" },
|
||||||
{ name: "About", id: "/about" },
|
{ name: "About", id: "/about" },
|
||||||
|
{ name: "Blog", id: "/blog" },
|
||||||
{ name: "Contact", id: "/contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ export default function ContactPage() {
|
|||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Products", id: "/products" },
|
{ name: "Products", id: "/products" },
|
||||||
{ name: "About", id: "/about" },
|
{ name: "About", id: "/about" },
|
||||||
|
{ name: "Blog", id: "/blog" },
|
||||||
{ name: "Contact", id: "/contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ export default function HomePage() {
|
|||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Products", id: "/products" },
|
{ name: "Products", id: "/products" },
|
||||||
{ name: "About", id: "/about" },
|
{ name: "About", id: "/about" },
|
||||||
|
{ name: "Blog", id: "/blog" },
|
||||||
{ name: "Contact", id: "/contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ export default function ProductsPage() {
|
|||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Products", id: "/products" },
|
{ name: "Products", id: "/products" },
|
||||||
{ name: "About", id: "/about" },
|
{ name: "About", id: "/about" },
|
||||||
|
{ name: "Blog", id: "/blog" },
|
||||||
{ name: "Contact", id: "/contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ export default function ProductPage({ params }: { params: { id: string } }) {
|
|||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Products", id: "/products" },
|
{ name: "Products", id: "/products" },
|
||||||
{ name: "About", id: "/about" },
|
{ name: "About", id: "/about" },
|
||||||
|
{ name: "Blog", id: "/blog" },
|
||||||
{ name: "Contact", id: "/contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -73,4 +74,4 @@ export default function ProductPage({ params }: { params: { id: string } }) {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -10,6 +10,7 @@ export default function ShopPage() {
|
|||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Products", id: "/products" },
|
{ name: "Products", id: "/products" },
|
||||||
{ name: "About", id: "/about" },
|
{ name: "About", id: "/about" },
|
||||||
|
{ name: "Blog", id: "/blog" },
|
||||||
{ name: "Contact", id: "/contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -85,4 +86,4 @@ export default function ShopPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -2,23 +2,23 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
/* --background: #f7f6f7;;
|
/* --background: #0a0a0a;;
|
||||||
--card: #ffffff;;
|
--card: #1a1a1a;;
|
||||||
--foreground: #032419;;
|
--foreground: #ffffffe6;;
|
||||||
--primary-cta: #2bb889;;
|
--primary-cta: #e6e6e6;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #1a1a1a;;
|
||||||
--accent: #09b97e;;
|
--accent: #737373;;
|
||||||
--background-accent: #a8e8c3;; */
|
--background-accent: #737373;; */
|
||||||
|
|
||||||
--background: #f7f6f7;;
|
--background: #0a0a0a;;
|
||||||
--card: #ffffff;;
|
--card: #1a1a1a;;
|
||||||
--foreground: #032419;;
|
--foreground: #ffffffe6;;
|
||||||
--primary-cta: #2bb889;;
|
--primary-cta: #e6e6e6;;
|
||||||
--primary-cta-text: #f7f6f7;;
|
--primary-cta-text: #0a0a0a;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #1a1a1a;;
|
||||||
--secondary-cta-text: #032419;;
|
--secondary-cta-text: #ffffffe6;;
|
||||||
--accent: #09b97e;;
|
--accent: #737373;;
|
||||||
--background-accent: #a8e8c3;;
|
--background-accent: #737373;;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user