Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c46f5ea78b | |||
| f9dfc6c434 | |||
| 22ac9c9284 | |||
| 1718346999 | |||
| 9b89d1afc6 | |||
| f48a5b58df |
@@ -118,4 +118,4 @@ export default function AboutPage() {
|
|||||||
/>
|
/>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -56,7 +56,8 @@ export default function BlogPage() {
|
|||||||
const url = `${apiUrl}/posts/${projectId}?status=published`;
|
const url = `${apiUrl}/posts/${projectId}?status=published`;
|
||||||
const response = await fetch(url, {
|
const response = await fetch(url, {
|
||||||
method: "GET", headers: {
|
method: "GET", headers: {
|
||||||
"Content-Type": "application/json"},
|
"Content-Type": "application/json"
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
if (response.ok) {
|
if (response.ok) {
|
||||||
@@ -163,4 +164,4 @@ export default function BlogPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -103,4 +103,4 @@ export default function ContactPage() {
|
|||||||
/>
|
/>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,21 +4,21 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
/* --background: #f5f5f5;;
|
/* --background: #080000;;
|
||||||
--card: #ffffff;;
|
--card: #1e0d0d;;
|
||||||
--foreground: #1c1c1c;;
|
--foreground: #ffe6e6;;
|
||||||
--primary-cta: #159c49;;
|
--primary-cta: #ff3d4a;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #1f0a0a;;
|
||||||
--accent: #159c49;;
|
--accent: #7b2d2d;;
|
||||||
--background-accent: #a8e8ba;; */
|
--background-accent: #b8111f;; */
|
||||||
|
|
||||||
--background: #f5f5f5;;
|
--background: #080000;;
|
||||||
--card: #ffffff;;
|
--card: #1e0d0d;;
|
||||||
--foreground: #1c1c1c;;
|
--foreground: #ffe6e6;;
|
||||||
--primary-cta: #159c49;;
|
--primary-cta: #ff3d4a;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #1f0a0a;;
|
||||||
--accent: #159c49;;
|
--accent: #7b2d2d;;
|
||||||
--background-accent: #a8e8ba;;
|
--background-accent: #b8111f;;
|
||||||
|
|
||||||
/* 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);
|
||||||
|
|||||||
@@ -1256,4 +1256,4 @@ export default function RootLayout({
|
|||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -223,4 +223,4 @@ export default function HomePage() {
|
|||||||
/>
|
/>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user