Spaces:
Running
Running
Avijit Ghosh commited on
Commit ·
a328136
1
Parent(s): 1e918e0
added better design and nav flow
Browse files- app/about/page.tsx +1 -1
- app/globals.css +67 -67
- app/layout.tsx +2 -15
- app/page.tsx +4 -5
- components/navigation.tsx +6 -13
- components/page-header.tsx +17 -15
- styles/globals.css +67 -65
app/about/page.tsx
CHANGED
|
@@ -16,7 +16,7 @@ export default function AboutPage() {
|
|
| 16 |
<Navigation />
|
| 17 |
|
| 18 |
<PageHeader
|
| 19 |
-
title="About
|
| 20 |
description="Building a shared infrastructure for informative, transparent, and comparable AI evaluations."
|
| 21 |
/>
|
| 22 |
|
|
|
|
| 16 |
<Navigation />
|
| 17 |
|
| 18 |
<PageHeader
|
| 19 |
+
title="About"
|
| 20 |
description="Building a shared infrastructure for informative, transparent, and comparable AI evaluations."
|
| 21 |
/>
|
| 22 |
|
app/globals.css
CHANGED
|
@@ -4,76 +4,76 @@
|
|
| 4 |
@custom-variant dark (&:is(.dark *));
|
| 5 |
|
| 6 |
:root {
|
| 7 |
-
--background:
|
| 8 |
-
--foreground:
|
| 9 |
-
--card:
|
| 10 |
-
--card-foreground:
|
| 11 |
-
--popover:
|
| 12 |
-
--popover-foreground:
|
| 13 |
-
--primary:
|
| 14 |
-
--primary-foreground:
|
| 15 |
-
--secondary:
|
| 16 |
-
--secondary-foreground:
|
| 17 |
-
--muted:
|
| 18 |
-
--muted-foreground:
|
| 19 |
-
--accent:
|
| 20 |
-
--accent-foreground:
|
| 21 |
-
--destructive:
|
| 22 |
-
--destructive-foreground:
|
| 23 |
-
--border:
|
| 24 |
-
--input:
|
| 25 |
-
--ring:
|
| 26 |
-
--chart-1:
|
| 27 |
-
--chart-2:
|
| 28 |
-
--chart-3:
|
| 29 |
-
--chart-4:
|
| 30 |
-
--chart-5:
|
| 31 |
-
--radius: 0.5rem;
|
| 32 |
-
--sidebar:
|
| 33 |
-
--sidebar-foreground:
|
| 34 |
-
--sidebar-primary:
|
| 35 |
-
--sidebar-primary-foreground:
|
| 36 |
-
--sidebar-accent:
|
| 37 |
-
--sidebar-accent-foreground:
|
| 38 |
-
--sidebar-border:
|
| 39 |
-
--sidebar-ring:
|
| 40 |
-
--font-heading:
|
| 41 |
-
--font-sans:
|
| 42 |
}
|
| 43 |
|
| 44 |
.dark {
|
| 45 |
-
--background:
|
| 46 |
-
--foreground:
|
| 47 |
-
--card:
|
| 48 |
-
--card-foreground:
|
| 49 |
-
--popover:
|
| 50 |
-
--popover-foreground:
|
| 51 |
-
--primary:
|
| 52 |
-
--primary-foreground:
|
| 53 |
-
--secondary:
|
| 54 |
-
--secondary-foreground:
|
| 55 |
-
--muted:
|
| 56 |
-
--muted-foreground:
|
| 57 |
-
--accent:
|
| 58 |
-
--accent-foreground:
|
| 59 |
-
--destructive:
|
| 60 |
-
--destructive-foreground:
|
| 61 |
-
--border:
|
| 62 |
-
--input:
|
| 63 |
-
--ring:
|
| 64 |
-
--chart-1:
|
| 65 |
-
--chart-2:
|
| 66 |
-
--chart-3:
|
| 67 |
-
--chart-4:
|
| 68 |
-
--chart-5:
|
| 69 |
-
--sidebar:
|
| 70 |
-
--sidebar-foreground:
|
| 71 |
-
--sidebar-primary:
|
| 72 |
-
--sidebar-primary-foreground:
|
| 73 |
-
--sidebar-accent:
|
| 74 |
-
--sidebar-accent-foreground:
|
| 75 |
-
--sidebar-border:
|
| 76 |
-
--sidebar-ring:
|
| 77 |
}
|
| 78 |
|
| 79 |
@theme inline {
|
|
|
|
| 4 |
@custom-variant dark (&:is(.dark *));
|
| 5 |
|
| 6 |
:root {
|
| 7 |
+
--background: #ffffff;
|
| 8 |
+
--foreground: #0a0a0a;
|
| 9 |
+
--card: #ffffff;
|
| 10 |
+
--card-foreground: #0a0a0a;
|
| 11 |
+
--popover: #ffffff;
|
| 12 |
+
--popover-foreground: #0a0a0a;
|
| 13 |
+
--primary: #0a0a0a;
|
| 14 |
+
--primary-foreground: #ffffff;
|
| 15 |
+
--secondary: #f5f5f5;
|
| 16 |
+
--secondary-foreground: #0a0a0a;
|
| 17 |
+
--muted: #f5f5f5;
|
| 18 |
+
--muted-foreground: #737373;
|
| 19 |
+
--accent: #f5f5f5;
|
| 20 |
+
--accent-foreground: #0a0a0a;
|
| 21 |
+
--destructive: #ef4444;
|
| 22 |
+
--destructive-foreground: #ffffff;
|
| 23 |
+
--border: #e5e5e5;
|
| 24 |
+
--input: #e5e5e5;
|
| 25 |
+
--ring: #3b82f6;
|
| 26 |
+
--chart-1: #3b82f6;
|
| 27 |
+
--chart-2: #22c55e;
|
| 28 |
+
--chart-3: #eab308;
|
| 29 |
+
--chart-4: #f97316;
|
| 30 |
+
--chart-5: #ef4444;
|
| 31 |
+
--radius: 0.5rem;
|
| 32 |
+
--sidebar: #f5f5f5;
|
| 33 |
+
--sidebar-foreground: #0a0a0a;
|
| 34 |
+
--sidebar-primary: #0a0a0a;
|
| 35 |
+
--sidebar-primary-foreground: #ffffff;
|
| 36 |
+
--sidebar-accent: #e5e5e5;
|
| 37 |
+
--sidebar-accent-foreground: #0a0a0a;
|
| 38 |
+
--sidebar-border: #e5e5e5;
|
| 39 |
+
--sidebar-ring: #3b82f6;
|
| 40 |
+
--font-heading: ui-sans-serif, system-ui, sans-serif;
|
| 41 |
+
--font-sans: ui-sans-serif, system-ui, sans-serif;
|
| 42 |
}
|
| 43 |
|
| 44 |
.dark {
|
| 45 |
+
--background: #0a0a0a;
|
| 46 |
+
--foreground: #ffffff;
|
| 47 |
+
--card: #1a1a1a;
|
| 48 |
+
--card-foreground: #ffffff;
|
| 49 |
+
--popover: #0a0a0a;
|
| 50 |
+
--popover-foreground: #ffffff;
|
| 51 |
+
--primary: #ffffff;
|
| 52 |
+
--primary-foreground: #0a0a0a;
|
| 53 |
+
--secondary: #2a2a2a;
|
| 54 |
+
--secondary-foreground: #ffffff;
|
| 55 |
+
--muted: #2a2a2a;
|
| 56 |
+
--muted-foreground: #a3a3a3;
|
| 57 |
+
--accent: #2a2a2a;
|
| 58 |
+
--accent-foreground: #ffffff;
|
| 59 |
+
--destructive: #7f1d1d;
|
| 60 |
+
--destructive-foreground: #ffffff;
|
| 61 |
+
--border: #2a2a2a;
|
| 62 |
+
--input: #2a2a2a;
|
| 63 |
+
--ring: #3b82f6;
|
| 64 |
+
--chart-1: #3b82f6;
|
| 65 |
+
--chart-2: #22c55e;
|
| 66 |
+
--chart-3: #eab308;
|
| 67 |
+
--chart-4: #f97316;
|
| 68 |
+
--chart-5: #ef4444;
|
| 69 |
+
--sidebar: #0a0a0a;
|
| 70 |
+
--sidebar-foreground: #ffffff;
|
| 71 |
+
--sidebar-primary: #3b82f6;
|
| 72 |
+
--sidebar-primary-foreground: #ffffff;
|
| 73 |
+
--sidebar-accent: #2a2a2a;
|
| 74 |
+
--sidebar-accent-foreground: #ffffff;
|
| 75 |
+
--sidebar-border: #2a2a2a;
|
| 76 |
+
--sidebar-ring: #3b82f6;
|
| 77 |
}
|
| 78 |
|
| 79 |
@theme inline {
|
app/layout.tsx
CHANGED
|
@@ -1,23 +1,10 @@
|
|
| 1 |
import type React from "react"
|
| 2 |
import type { Metadata } from "next"
|
| 3 |
-
import { Space_Grotesk, DM_Sans } from "next/font/google"
|
| 4 |
import "./globals.css"
|
| 5 |
import { ThemeProvider } from "@/components/theme-provider"
|
| 6 |
|
| 7 |
-
const spaceGrotesk = Space_Grotesk({
|
| 8 |
-
subsets: ["latin"],
|
| 9 |
-
display: "swap",
|
| 10 |
-
variable: "--font-space-grotesk",
|
| 11 |
-
})
|
| 12 |
-
|
| 13 |
-
const dmSans = DM_Sans({
|
| 14 |
-
subsets: ["latin"],
|
| 15 |
-
display: "swap",
|
| 16 |
-
variable: "--font-dm-sans",
|
| 17 |
-
})
|
| 18 |
-
|
| 19 |
export const metadata: Metadata = {
|
| 20 |
-
title: "
|
| 21 |
description: "Professional AI system evaluation and assessment tool",
|
| 22 |
generator: "v0.app",
|
| 23 |
}
|
|
@@ -28,7 +15,7 @@ export default function RootLayout({
|
|
| 28 |
children: React.ReactNode
|
| 29 |
}>) {
|
| 30 |
return (
|
| 31 |
-
<html lang="en" className=
|
| 32 |
<body className="font-sans">
|
| 33 |
<ThemeProvider attribute="class" defaultTheme="system" enableSystem disableTransitionOnChange>
|
| 34 |
{children}
|
|
|
|
| 1 |
import type React from "react"
|
| 2 |
import type { Metadata } from "next"
|
|
|
|
| 3 |
import "./globals.css"
|
| 4 |
import { ThemeProvider } from "@/components/theme-provider"
|
| 5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
export const metadata: Metadata = {
|
| 7 |
+
title: "Eval Cards",
|
| 8 |
description: "Professional AI system evaluation and assessment tool",
|
| 9 |
generator: "v0.app",
|
| 10 |
}
|
|
|
|
| 15 |
children: React.ReactNode
|
| 16 |
}>) {
|
| 17 |
return (
|
| 18 |
+
<html lang="en" className="antialiased" suppressHydrationWarning>
|
| 19 |
<body className="font-sans">
|
| 20 |
<ThemeProvider attribute="class" defaultTheme="system" enableSystem disableTransitionOnChange>
|
| 21 |
{children}
|
app/page.tsx
CHANGED
|
@@ -103,12 +103,11 @@ export default function HomePage() {
|
|
| 103 |
return (
|
| 104 |
<div className="min-h-screen bg-background">
|
| 105 |
<Navigation />
|
|
|
|
|
|
|
|
|
|
|
|
|
| 106 |
<main className="container mx-auto px-4 py-8">
|
| 107 |
-
<PageHeader
|
| 108 |
-
title="Eval Cards Platform"
|
| 109 |
-
description="A central platform for informative, transparent, and comparable AI evaluations. Explore standardized reports across models and benchmarks."
|
| 110 |
-
/>
|
| 111 |
-
|
| 112 |
<Alert className="mb-8 border-amber-200 bg-amber-50 text-amber-900 dark:border-amber-900/50 dark:bg-amber-900/20 dark:text-amber-200">
|
| 113 |
<Info className="h-4 w-4 text-amber-600 dark:text-amber-400" />
|
| 114 |
<AlertTitle>Demo Environment</AlertTitle>
|
|
|
|
| 103 |
return (
|
| 104 |
<div className="min-h-screen bg-background">
|
| 105 |
<Navigation />
|
| 106 |
+
<PageHeader
|
| 107 |
+
title="Explore Models"
|
| 108 |
+
description="Explore standardized reports across models and benchmarks. Transparent, comparable, and informative."
|
| 109 |
+
/>
|
| 110 |
<main className="container mx-auto px-4 py-8">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 111 |
<Alert className="mb-8 border-amber-200 bg-amber-50 text-amber-900 dark:border-amber-900/50 dark:bg-amber-900/20 dark:text-amber-200">
|
| 112 |
<Info className="h-4 w-4 text-amber-600 dark:text-amber-400" />
|
| 113 |
<AlertTitle>Demo Environment</AlertTitle>
|
components/navigation.tsx
CHANGED
|
@@ -31,27 +31,20 @@ export function Navigation() {
|
|
| 31 |
<div className="container mx-auto px-4 sm:px-6 py-4">
|
| 32 |
<div className="flex flex-col sm:flex-row items-start sm:items-center justify-between gap-3">
|
| 33 |
{/* Logo and branding */}
|
| 34 |
-
<div className="flex items-center gap-
|
| 35 |
{/* Logo */}
|
| 36 |
<Link href="/" className="flex-shrink-0">
|
| 37 |
<img
|
| 38 |
src="https://evalevalai.com/assets/img/logo-square.png"
|
| 39 |
alt="EvalEval Logo"
|
| 40 |
-
className="w-
|
| 41 |
/>
|
| 42 |
</Link>
|
| 43 |
|
| 44 |
-
{/* App title
|
| 45 |
-
<
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
AI Eval Dashboard
|
| 49 |
-
</h1>
|
| 50 |
-
</Link>
|
| 51 |
-
<p className="text-sm text-muted-foreground">
|
| 52 |
-
AI evaluation documentation platform
|
| 53 |
-
</p>
|
| 54 |
-
</div>
|
| 55 |
</div>
|
| 56 |
|
| 57 |
{/* Navigation and actions */}
|
|
|
|
| 31 |
<div className="container mx-auto px-4 sm:px-6 py-4">
|
| 32 |
<div className="flex flex-col sm:flex-row items-start sm:items-center justify-between gap-3">
|
| 33 |
{/* Logo and branding */}
|
| 34 |
+
<div className="flex items-center gap-3">
|
| 35 |
{/* Logo */}
|
| 36 |
<Link href="/" className="flex-shrink-0">
|
| 37 |
<img
|
| 38 |
src="https://evalevalai.com/assets/img/logo-square.png"
|
| 39 |
alt="EvalEval Logo"
|
| 40 |
+
className="w-8 h-8 rounded-md hover:opacity-80 transition-opacity"
|
| 41 |
/>
|
| 42 |
</Link>
|
| 43 |
|
| 44 |
+
{/* App title */}
|
| 45 |
+
<Link href="/" className="font-bold text-lg tracking-tight hover:text-primary/80 transition-colors">
|
| 46 |
+
Eval Cards
|
| 47 |
+
</Link>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
</div>
|
| 49 |
|
| 50 |
{/* Navigation and actions */}
|
components/page-header.tsx
CHANGED
|
@@ -6,23 +6,25 @@ interface PageHeaderProps {
|
|
| 6 |
|
| 7 |
export function PageHeader({ title, description, children }: PageHeaderProps) {
|
| 8 |
return (
|
| 9 |
-
<div className="
|
| 10 |
-
<div className="
|
| 11 |
-
<div>
|
| 12 |
-
<
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
)}
|
| 20 |
</div>
|
| 21 |
-
{children && (
|
| 22 |
-
<div className="flex items-center gap-2">
|
| 23 |
-
{children}
|
| 24 |
-
</div>
|
| 25 |
-
)}
|
| 26 |
</div>
|
| 27 |
</div>
|
| 28 |
)
|
|
|
|
| 6 |
|
| 7 |
export function PageHeader({ title, description, children }: PageHeaderProps) {
|
| 8 |
return (
|
| 9 |
+
<div className="border-b bg-muted/30">
|
| 10 |
+
<div className="container mx-auto px-4 sm:px-6 py-6">
|
| 11 |
+
<div className="flex flex-col sm:flex-row items-start sm:items-center justify-between gap-4">
|
| 12 |
+
<div>
|
| 13 |
+
<h2 className="text-2xl sm:text-3xl font-bold font-heading text-foreground">
|
| 14 |
+
{title}
|
| 15 |
+
</h2>
|
| 16 |
+
{description && (
|
| 17 |
+
<p className="text-base text-muted-foreground mt-1">
|
| 18 |
+
{description}
|
| 19 |
+
</p>
|
| 20 |
+
)}
|
| 21 |
+
</div>
|
| 22 |
+
{children && (
|
| 23 |
+
<div className="flex items-center gap-2">
|
| 24 |
+
{children}
|
| 25 |
+
</div>
|
| 26 |
)}
|
| 27 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
</div>
|
| 29 |
</div>
|
| 30 |
)
|
styles/globals.css
CHANGED
|
@@ -4,74 +4,76 @@
|
|
| 4 |
@custom-variant dark (&:is(.dark *));
|
| 5 |
|
| 6 |
:root {
|
| 7 |
-
--background:
|
| 8 |
-
--foreground:
|
| 9 |
-
--card:
|
| 10 |
-
--card-foreground:
|
| 11 |
-
--popover:
|
| 12 |
-
--popover-foreground:
|
| 13 |
-
--primary:
|
| 14 |
-
--primary-foreground:
|
| 15 |
-
--secondary:
|
| 16 |
-
--secondary-foreground:
|
| 17 |
-
--muted:
|
| 18 |
-
--muted-foreground:
|
| 19 |
-
--accent:
|
| 20 |
-
--accent-foreground:
|
| 21 |
-
--destructive:
|
| 22 |
-
--destructive-foreground:
|
| 23 |
-
--border:
|
| 24 |
-
--input:
|
| 25 |
-
--ring:
|
| 26 |
-
--chart-1:
|
| 27 |
-
--chart-2:
|
| 28 |
-
--chart-3:
|
| 29 |
-
--chart-4:
|
| 30 |
-
--chart-5:
|
| 31 |
-
--radius: 0.
|
| 32 |
-
--sidebar:
|
| 33 |
-
--sidebar-foreground:
|
| 34 |
-
--sidebar-primary:
|
| 35 |
-
--sidebar-primary-foreground:
|
| 36 |
-
--sidebar-accent:
|
| 37 |
-
--sidebar-accent-foreground:
|
| 38 |
-
--sidebar-border:
|
| 39 |
-
--sidebar-ring:
|
|
|
|
|
|
|
| 40 |
}
|
| 41 |
|
| 42 |
.dark {
|
| 43 |
-
--background:
|
| 44 |
-
--foreground:
|
| 45 |
-
--card:
|
| 46 |
-
--card-foreground:
|
| 47 |
-
--popover:
|
| 48 |
-
--popover-foreground:
|
| 49 |
-
--primary:
|
| 50 |
-
--primary-foreground:
|
| 51 |
-
--secondary:
|
| 52 |
-
--secondary-foreground:
|
| 53 |
-
--muted:
|
| 54 |
-
--muted-foreground:
|
| 55 |
-
--accent:
|
| 56 |
-
--accent-foreground:
|
| 57 |
-
--destructive:
|
| 58 |
-
--destructive-foreground:
|
| 59 |
-
--border:
|
| 60 |
-
--input:
|
| 61 |
-
--ring:
|
| 62 |
-
--chart-1:
|
| 63 |
-
--chart-2:
|
| 64 |
-
--chart-3:
|
| 65 |
-
--chart-4:
|
| 66 |
-
--chart-5:
|
| 67 |
-
--sidebar:
|
| 68 |
-
--sidebar-foreground:
|
| 69 |
-
--sidebar-primary:
|
| 70 |
-
--sidebar-primary-foreground:
|
| 71 |
-
--sidebar-accent:
|
| 72 |
-
--sidebar-accent-foreground:
|
| 73 |
-
--sidebar-border:
|
| 74 |
-
--sidebar-ring:
|
| 75 |
}
|
| 76 |
|
| 77 |
@theme inline {
|
|
|
|
| 4 |
@custom-variant dark (&:is(.dark *));
|
| 5 |
|
| 6 |
:root {
|
| 7 |
+
--background: #ffffff;
|
| 8 |
+
--foreground: #0a0a0a;
|
| 9 |
+
--card: #ffffff;
|
| 10 |
+
--card-foreground: #0a0a0a;
|
| 11 |
+
--popover: #ffffff;
|
| 12 |
+
--popover-foreground: #0a0a0a;
|
| 13 |
+
--primary: #0a0a0a;
|
| 14 |
+
--primary-foreground: #ffffff;
|
| 15 |
+
--secondary: #f5f5f5;
|
| 16 |
+
--secondary-foreground: #0a0a0a;
|
| 17 |
+
--muted: #f5f5f5;
|
| 18 |
+
--muted-foreground: #737373;
|
| 19 |
+
--accent: #f5f5f5;
|
| 20 |
+
--accent-foreground: #0a0a0a;
|
| 21 |
+
--destructive: #ef4444;
|
| 22 |
+
--destructive-foreground: #ffffff;
|
| 23 |
+
--border: #e5e5e5;
|
| 24 |
+
--input: #e5e5e5;
|
| 25 |
+
--ring: #3b82f6;
|
| 26 |
+
--chart-1: #3b82f6;
|
| 27 |
+
--chart-2: #22c55e;
|
| 28 |
+
--chart-3: #eab308;
|
| 29 |
+
--chart-4: #f97316;
|
| 30 |
+
--chart-5: #ef4444;
|
| 31 |
+
--radius: 0.5rem;
|
| 32 |
+
--sidebar: #f5f5f5;
|
| 33 |
+
--sidebar-foreground: #0a0a0a;
|
| 34 |
+
--sidebar-primary: #0a0a0a;
|
| 35 |
+
--sidebar-primary-foreground: #ffffff;
|
| 36 |
+
--sidebar-accent: #e5e5e5;
|
| 37 |
+
--sidebar-accent-foreground: #0a0a0a;
|
| 38 |
+
--sidebar-border: #e5e5e5;
|
| 39 |
+
--sidebar-ring: #3b82f6;
|
| 40 |
+
--font-heading: ui-sans-serif, system-ui, sans-serif;
|
| 41 |
+
--font-sans: ui-sans-serif, system-ui, sans-serif;
|
| 42 |
}
|
| 43 |
|
| 44 |
.dark {
|
| 45 |
+
--background: #0a0a0a;
|
| 46 |
+
--foreground: #ffffff;
|
| 47 |
+
--card: #1a1a1a;
|
| 48 |
+
--card-foreground: #ffffff;
|
| 49 |
+
--popover: #0a0a0a;
|
| 50 |
+
--popover-foreground: #ffffff;
|
| 51 |
+
--primary: #ffffff;
|
| 52 |
+
--primary-foreground: #0a0a0a;
|
| 53 |
+
--secondary: #2a2a2a;
|
| 54 |
+
--secondary-foreground: #ffffff;
|
| 55 |
+
--muted: #2a2a2a;
|
| 56 |
+
--muted-foreground: #a3a3a3;
|
| 57 |
+
--accent: #2a2a2a;
|
| 58 |
+
--accent-foreground: #ffffff;
|
| 59 |
+
--destructive: #7f1d1d;
|
| 60 |
+
--destructive-foreground: #ffffff;
|
| 61 |
+
--border: #2a2a2a;
|
| 62 |
+
--input: #2a2a2a;
|
| 63 |
+
--ring: #3b82f6;
|
| 64 |
+
--chart-1: #3b82f6;
|
| 65 |
+
--chart-2: #22c55e;
|
| 66 |
+
--chart-3: #eab308;
|
| 67 |
+
--chart-4: #f97316;
|
| 68 |
+
--chart-5: #ef4444;
|
| 69 |
+
--sidebar: #0a0a0a;
|
| 70 |
+
--sidebar-foreground: #ffffff;
|
| 71 |
+
--sidebar-primary: #3b82f6;
|
| 72 |
+
--sidebar-primary-foreground: #ffffff;
|
| 73 |
+
--sidebar-accent: #2a2a2a;
|
| 74 |
+
--sidebar-accent-foreground: #ffffff;
|
| 75 |
+
--sidebar-border: #2a2a2a;
|
| 76 |
+
--sidebar-ring: #3b82f6;
|
| 77 |
}
|
| 78 |
|
| 79 |
@theme inline {
|