From 47745ec13e597d89731b6b3f4cefe483a2b85525 Mon Sep 17 00:00:00 2001 From: development Date: Wed, 4 Feb 2026 23:12:21 +0000 Subject: [PATCH 1/3] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 17a470b..4170750 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -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) { @@ -152,4 +153,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 63a760fa75bd661046753a1600f7a5c928348efa Mon Sep 17 00:00:00 2001 From: development Date: Wed, 4 Feb 2026 23:12:22 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index cc946fd..ad6fe8b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1265,4 +1265,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} -- 2.49.1 From 5d1567ee319338ee8313d7b1b40b8df1d6a06174 Mon Sep 17 00:00:00 2001 From: development Date: Wed, 4 Feb 2026 23:12:23 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 29 ++++++++--------------------- 1 file changed, 8 insertions(+), 21 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 3fff1e6..57fe66a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,8 +1,8 @@ -"use client" +"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal'; -import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; +import HeroOverlay from '@/components/sections/hero/HeroOverlay'; import SplitAbout from '@/components/sections/about/SplitAbout'; import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; @@ -36,35 +36,22 @@ export default function LandingPage() {
- @@ -276,4 +263,4 @@ export default function LandingPage() {
); -} \ No newline at end of file +} -- 2.49.1