Avijit Ghosh commited on
Commit
733e57b
·
1 Parent(s): 9243cff

added new nav

Browse files
Files changed (2) hide show
  1. app/about/page.tsx +43 -0
  2. components/navigation.tsx +5 -3
app/about/page.tsx CHANGED
@@ -150,6 +150,49 @@ export default function AboutPage() {
150
  </div>
151
  </div>
152
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
153
  </CardContent>
154
  </Card>
155
 
 
150
  </div>
151
  </div>
152
  </div>
153
+
154
+ <Separator className="my-6" />
155
+
156
+ <div className="space-y-4">
157
+ <h4 className="font-medium text-foreground">Taxonomy Sources</h4>
158
+ <p className="text-sm text-muted-foreground">
159
+ Our evaluation framework builds upon established research and industry standards:
160
+ </p>
161
+ <div className="grid gap-3 sm:grid-cols-2">
162
+ <div className="flex items-start gap-3 p-3 border rounded-lg">
163
+ <ExternalLink className="h-4 w-4 text-muted-foreground mt-0.5 flex-shrink-0" />
164
+ <div>
165
+ <h5 className="font-medium text-sm">OECD AI Capability Indicators</h5>
166
+ <p className="text-xs text-muted-foreground mb-2">
167
+ OECD framework for AI capabilities assessment and evaluation
168
+ </p>
169
+ <Link
170
+ href="https://www.oecd.org/en/publications/introducing-the-oecd-ai-capability-indicators_be745f04-en.html"
171
+ target="_blank"
172
+ className="text-xs text-primary hover:underline"
173
+ >
174
+ oecd.org/ai-capability-indicators
175
+ </Link>
176
+ </div>
177
+ </div>
178
+ <div className="flex items-start gap-3 p-3 border rounded-lg">
179
+ <ExternalLink className="h-4 w-4 text-muted-foreground mt-0.5 flex-shrink-0" />
180
+ <div>
181
+ <h5 className="font-medium text-sm">NIST AI Risk Management Framework</h5>
182
+ <p className="text-xs text-muted-foreground mb-2">
183
+ NIST framework for identifying and managing AI risks
184
+ </p>
185
+ <Link
186
+ href="https://nvlpubs.nist.gov/nistpubs/ai/NIST.AI.600-1.pdf"
187
+ target="_blank"
188
+ className="text-xs text-primary hover:underline"
189
+ >
190
+ nvlpubs.nist.gov/NIST.AI.600-1.pdf
191
+ </Link>
192
+ </div>
193
+ </div>
194
+ </div>
195
+ </div>
196
  </CardContent>
197
  </Card>
198
 
components/navigation.tsx CHANGED
@@ -40,9 +40,11 @@ export function Navigation() {
40
  <div className="flex items-center gap-4">
41
  {/* Logo */}
42
  <Link href="/" className="flex-shrink-0">
43
- <div className="w-10 h-10 bg-gradient-to-br from-blue-500 to-purple-600 rounded-lg flex items-center justify-center text-white font-bold text-lg hover:scale-105 transition-transform">
44
- AI
45
- </div>
 
 
46
  </Link>
47
 
48
  {/* App title and description */}
 
40
  <div className="flex items-center gap-4">
41
  {/* Logo */}
42
  <Link href="/" className="flex-shrink-0">
43
+ <img
44
+ src="https://evalevalai.com/assets/img/logo-square.png"
45
+ alt="EvalEval Logo"
46
+ className="w-10 h-10 rounded-lg hover:scale-105 transition-transform"
47
+ />
48
  </Link>
49
 
50
  {/* App title and description */}