Merge version_1 into main #1
@@ -54,7 +54,8 @@ export default function BlogPage() {
|
||||
const url = `${apiUrl}/posts/${projectId}?status=published`;
|
||||
const response = await fetch(url, {
|
||||
method: "GET", headers: {
|
||||
"Content-Type": "application/json"},
|
||||
"Content-Type": "application/json"
|
||||
},
|
||||
});
|
||||
|
||||
if (response.ok) {
|
||||
@@ -128,9 +129,9 @@ export default function BlogPage() {
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{ label: "About", id: "about" },
|
||||
{ label: "Work", id: "work" },
|
||||
{ label: "Skills", id: "skills" }
|
||||
{ label: "About", href: "about" },
|
||||
{ label: "Work", href: "work" },
|
||||
{ label: "Skills", href: "skills" }
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -142,7 +143,7 @@ export default function BlogPage() {
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Contact", id: "contact" },
|
||||
{ label: "Contact", href: "contact" },
|
||||
{ label: "Privacy", href: "#privacy" },
|
||||
{ label: "Terms", href: "#terms" }
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user