Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,5 +95,5 @@ jobs:
run: |
if [ -f packages/ui/package.json ]; then
cd packages/ui
npm run build || true
npm run build
fi
72 changes: 72 additions & 0 deletions packages/ui/app/globals.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
:root {
--background: 240 10% 3.9%;
--foreground: 240 5% 96%;

--card: 240 10% 6%;
--card-foreground: 240 5% 96%;

--popover: 240 10% 3.9%;
--popover-foreground: 240 5% 96%;

--primary: 263 70% 50%;
--primary-foreground: 210 20% 98%;

--secondary: 240 4% 16%;
--secondary-foreground: 240 5% 96%;

--muted: 240 4% 16%;
--muted-foreground: 240 5% 65%;

--accent: 263 60% 40%;
--accent-foreground: 240 5% 96%;

--destructive: 0 72% 51%;
--destructive-foreground: 210 20% 98%;

--border: 240 4% 16%;
--input: 240 4% 16%;
--ring: 263 70% 50%;
--radius: 0.75rem;
}
}

body {
background-color: hsl(var(--background));
color: hsl(var(--foreground));
font-family: 'Inter', system-ui, -apple-system, sans-serif;
overflow-x: hidden;
}

/* Custom scrollbars for dashboard views */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: hsl(var(--border));
border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
background: hsl(var(--muted-foreground));
}

/* Premium Card Glass Effects */
.glass-panel {
background: rgba(15, 15, 23, 0.65);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.05);
}
.glass-panel-hover:hover {
border-color: rgba(147, 51, 234, 0.2);
box-shadow: 0 0 15px rgba(147, 51, 234, 0.05);
transition: all 0.2s ease-in-out;
}
19 changes: 19 additions & 0 deletions packages/ui/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import type { Metadata } from "next";
import "./globals.css";

export const metadata: Metadata = {
title: "AgentScope Observability Dashboard",
description: "Real-time multi-agent telemetry and monitoring dashboard",
};

export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}
Loading
Loading