Merge version_2 into main #1

Merged
development merged 4 commits from version_2 into main 2026-01-24 10:37:42 +00:00
Showing only changes of commit 5cd4e6c5bb - Show all commits

View File

@@ -56,7 +56,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) {
@@ -123,7 +124,7 @@ export default function BlogPage() {
)}
<FooterMedia
imageSrc="asset://footer-motion-bg"
imageSrc="https://img.b2bpic.net/free-vector/gradient-triangles-abstract-sport-background_52683-14013.jpg"
imageAlt="Motion graphics background"
logoText="Alex Motion"
copyrightText="© 2024 Alex Motion. All rights reserved."
@@ -157,4 +158,4 @@ export default function BlogPage() {
</ReactLenis>
</ThemeProvider>
);
}
}