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 (
-