Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-01-24 10:37:41 +00:00
4 changed files with 21 additions and 20 deletions

View File

@@ -56,7 +56,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) {
@@ -123,7 +124,7 @@ export default function BlogPage() {
)} )}
<FooterMedia <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" imageAlt="Motion graphics background"
logoText="Alex Motion" logoText="Alex Motion"
copyrightText="© 2024 Alex Motion. All rights reserved." copyrightText="© 2024 Alex Motion. All rights reserved."

View File

@@ -4,21 +4,21 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
/* --background: #f5f5f5;; /* --background: #0a0a0a;;
--card: #ffffff;; --card: #1a1a1a;;
--foreground: #1c1c1c;; --foreground: #ffffffe6;;
--primary-cta: #e63946;; --primary-cta: #e6e6e6;;
--secondary-cta: #ffffff;; --secondary-cta: #1a1a1a;;
--accent: #e63946;; --accent: #737373;;
--background-accent: #e8a8b6;; */ --background-accent: #737373;; */
--background: #f5f5f5;; --background: #0a0a0a;;
--card: #ffffff;; --card: #1a1a1a;;
--foreground: #1c1c1c;; --foreground: #ffffffe6;;
--primary-cta: #e63946;; --primary-cta: #e6e6e6;;
--secondary-cta: #ffffff;; --secondary-cta: #1a1a1a;;
--accent: #e63946;; --accent: #737373;;
--background-accent: #e8a8b6;; --background-accent: #737373;;
/* 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);

View File

@@ -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';