diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 05b56e7..35a2a51 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) { @@ -85,7 +86,7 @@ export default function BlogPage() { ); -} \ No newline at end of file +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d2cce8e..4bf3747 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1262,4 +1262,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} diff --git a/src/app/page.tsx b/src/app/page.tsx index eeb2262..18b6ab8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,4 @@ -"use client" +"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal'; @@ -17,7 +17,7 @@ export default function LandingPage() { ); -} \ No newline at end of file +}