Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 95f5a47371 | |||
| 62e1a9577f | |||
| 9c0f6319c1 | |||
| 39cf01a178 |
@@ -54,7 +54,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) {
|
||||||
|
|||||||
@@ -4,21 +4,21 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
/* --background: #f5f5f5;;
|
/* --background: #fef5f0;;
|
||||||
--card: #ffffff;;
|
--card: #fde8dd;;
|
||||||
--foreground: #1c1c1c;;
|
--foreground: #3d2817;;
|
||||||
--primary-cta: #1f514c;;
|
--primary-cta: #d97c63;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #ffffff;;
|
||||||
--accent: #159c49;;
|
--accent: #f4a574;;
|
||||||
--background-accent: #a8e8ba;; */
|
--background-accent: #e8a8a0;; */
|
||||||
|
|
||||||
--background: #f5f5f5;;
|
--background: #fef5f0;;
|
||||||
--card: #ffffff;;
|
--card: #fde8dd;;
|
||||||
--foreground: #1c1c1c;;
|
--foreground: #3d2817;;
|
||||||
--primary-cta: #1f514c;;
|
--primary-cta: #d97c63;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #ffffff;;
|
||||||
--accent: #159c49;;
|
--accent: #f4a574;;
|
||||||
--background-accent: #a8e8ba;;
|
--background-accent: #e8a8a0;;
|
||||||
|
|
||||||
/* 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);
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
"use client"
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
|
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
|
||||||
|
|||||||
Reference in New Issue
Block a user