Álvaro Valenzuela Valdes commited on
Commit ·
f962a3a
1
Parent(s): be9e55c
fix: Restore techStack variable in SystemInfo to fix build error
Browse files
frontend/components/SystemInfo.tsx
CHANGED
|
@@ -36,7 +36,7 @@ export default function SystemInfo() {
|
|
| 36 |
setIsSyncing(false);
|
| 37 |
}
|
| 38 |
};
|
| 39 |
-
|
| 40 |
{ name: "FastAPI", role: "Backend Engine", desc: "High-performance Python framework for AI orchestration." },
|
| 41 |
{ name: "Next.js 14", role: "Frontend Framework", desc: "Modern React framework with server-side capabilities." },
|
| 42 |
{ name: "Tailwind CSS", role: "Design System", desc: "Premium styling with custom glassmorphism effects." },
|
|
|
|
| 36 |
setIsSyncing(false);
|
| 37 |
}
|
| 38 |
};
|
| 39 |
+
const techStack = [
|
| 40 |
{ name: "FastAPI", role: "Backend Engine", desc: "High-performance Python framework for AI orchestration." },
|
| 41 |
{ name: "Next.js 14", role: "Frontend Framework", desc: "Modern React framework with server-side capabilities." },
|
| 42 |
{ name: "Tailwind CSS", role: "Design System", desc: "Premium styling with custom glassmorphism effects." },
|