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 +} 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 +} 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 +}