Merge version_1 into main #1
@@ -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) {
|
||||||
@@ -128,9 +129,9 @@ export default function BlogPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{ label: "About", id: "about" },
|
{ label: "About", href: "about" },
|
||||||
{ label: "Work", id: "work" },
|
{ label: "Work", href: "work" },
|
||||||
{ label: "Skills", id: "skills" }
|
{ label: "Skills", href: "skills" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -142,7 +143,7 @@ export default function BlogPage() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{ label: "Contact", id: "contact" },
|
{ label: "Contact", href: "contact" },
|
||||||
{ label: "Privacy", href: "#privacy" },
|
{ label: "Privacy", href: "#privacy" },
|
||||||
{ label: "Terms", href: "#terms" }
|
{ label: "Terms", href: "#terms" }
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user