Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 40f3a2f34d | |||
| d4bb3e4f05 | |||
| 472dd0eba5 | |||
| 0f3bf369f5 |
@@ -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) {
|
||||||
@@ -163,4 +164,4 @@ export default function BlogPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,21 +4,21 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
/* --background: #f5f5f5;;
|
/* --background: #000802;;
|
||||||
--card: #ffffff;;
|
--card: #0b1a0b;;
|
||||||
--foreground: #1c1c1c;;
|
--foreground: #e6ffe6;;
|
||||||
--primary-cta: #1c1c1c;;
|
--primary-cta: #80da9b;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #07170b;;
|
||||||
--accent: #15479c;;
|
--accent: #38714a;;
|
||||||
--background-accent: #a8cce8;; */
|
--background-accent: #2c6541;; */
|
||||||
|
|
||||||
--background: #f5f5f5;;
|
--background: #000802;;
|
||||||
--card: #ffffff;;
|
--card: #0b1a0b;;
|
||||||
--foreground: #1c1c1c;;
|
--foreground: #e6ffe6;;
|
||||||
--primary-cta: #1c1c1c;;
|
--primary-cta: #80da9b;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #07170b;;
|
||||||
--accent: #15479c;;
|
--accent: #38714a;;
|
||||||
--background-accent: #a8cce8;;
|
--background-accent: #2c6541;;
|
||||||
|
|
||||||
/* 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);
|
||||||
|
|||||||
@@ -1264,4 +1264,4 @@ export default function RootLayout({
|
|||||||
</ServiceWrapper>
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
"use client"
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||||
@@ -242,4 +242,4 @@ export default function PetShelterPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user