From a3ccba0663d4bf1130bae3222fc3d2657229425a Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Fri, 24 Apr 2026 13:46:39 +0200 Subject: [PATCH] fix: add gravity-body class to project and KSuite pages for consistent styling --- app/k-suite/page.tsx | 4 ++-- app/projects/[projectName]/page.tsx | 4 ++-- app/projects/page.tsx | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/k-suite/page.tsx b/app/k-suite/page.tsx index b9d4081..a73d64a 100644 --- a/app/k-suite/page.tsx +++ b/app/k-suite/page.tsx @@ -100,7 +100,7 @@ const KSuiteOrganism = () => { const radius = 35; const positions = kSuiteApps.map((_, i) => - getPosition(i, kSuiteApps.length, radius) + getPosition(i, kSuiteApps.length, radius), ); return ( @@ -298,7 +298,7 @@ const KSuiteAppCard = ({ app }: { app: KSuiteApp }) => { export default function KSuitePage() { return ( -
+
{/* Hero Section */}
diff --git a/app/projects/[projectName]/page.tsx b/app/projects/[projectName]/page.tsx index 24d480f..e056928 100644 --- a/app/projects/[projectName]/page.tsx +++ b/app/projects/[projectName]/page.tsx @@ -10,7 +10,7 @@ import { notFound } from "next/navigation"; function getProjectByName(name: string): Project | undefined { const decodedName = decodeURIComponent(name.replace(/\+/g, " ")); return projects.find( - (p) => p.name.toLowerCase() === decodedName.toLowerCase() + (p) => p.name.toLowerCase() === decodedName.toLowerCase(), ); } @@ -69,7 +69,7 @@ export default async function ProjectDetailPage({ project.github_url || project.visit_url || project.download_url; return ( -
+

{project.name} diff --git a/app/projects/page.tsx b/app/projects/page.tsx index e05fecf..cba61f7 100644 --- a/app/projects/page.tsx +++ b/app/projects/page.tsx @@ -10,7 +10,7 @@ export const metadata: Metadata = { const ProjectsPage = () => { return ( -
+

My Projects