Spaces:
Running
Running
File size: 4,415 Bytes
dbdd6d1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 | import { ImageResponse } from "next/og"
export const runtime = "edge"
export const alt = "Eval Cards — a reporting layer over evaluation infrastructure"
export const size = { width: 1200, height: 630 }
export const contentType = "image/png"
export default function OpenGraphImage() {
return new ImageResponse(
(
<div
style={{
width: "100%",
height: "100%",
display: "flex",
flexDirection: "column",
background: "#faf9f6",
color: "#1a1916",
fontFamily: "Inter, sans-serif",
padding: "72px",
}}
>
{/* Brand row */}
<div
style={{
display: "flex",
alignItems: "center",
gap: "16px",
}}
>
<div
style={{
width: "56px",
height: "56px",
background: "#5bacd1",
color: "#ffffff",
display: "flex",
alignItems: "center",
justifyContent: "center",
fontFamily: "monospace",
fontWeight: 600,
fontSize: "22px",
letterSpacing: "0.02em",
borderRadius: "4px",
}}
>
EE
</div>
<div
style={{
fontSize: "26px",
fontWeight: 700,
letterSpacing: "-0.01em",
}}
>
Eval Cards
</div>
<div
style={{
fontFamily: "monospace",
fontSize: "14px",
letterSpacing: "0.2em",
textTransform: "uppercase",
color: "#9c9a95",
paddingLeft: "20px",
marginLeft: "8px",
borderLeft: "1px solid #e8e6e1",
display: "flex",
alignItems: "center",
height: "32px",
}}
>
Beta · EvalEval
</div>
</div>
{/* Headline + lede */}
<div
style={{
display: "flex",
flexDirection: "column",
gap: "26px",
flex: 1,
justifyContent: "center",
paddingTop: "8px",
}}
>
<div
style={{
fontSize: "76px",
lineHeight: 1.05,
letterSpacing: "-0.035em",
fontWeight: 700,
display: "flex",
flexDirection: "column",
}}
>
<div style={{ display: "flex" }}>
<span>A reporting </span>
<span style={{ fontStyle: "italic", color: "#5bacd1" }}>layer</span>
<span> over</span>
</div>
<div>evaluation infrastructure.</div>
</div>
<div
style={{
fontSize: "24px",
lineHeight: 1.5,
color: "#5c5a55",
maxWidth: "920px",
}}
>
A registry of reported model–benchmark results, organised under a six-level
rollout hierarchy and four interpretive signals.
</div>
</div>
{/* Footer strip */}
<div
style={{
display: "flex",
alignItems: "center",
justifyContent: "space-between",
paddingTop: "26px",
borderTop: "1px solid #1a1916",
fontFamily: "monospace",
fontSize: "15px",
letterSpacing: "0.18em",
textTransform: "uppercase",
color: "#5c5a55",
}}
>
<div style={{ display: "flex", alignItems: "center", gap: "14px" }}>
<span style={{ color: "#1a1916", fontWeight: 600 }}>Reproducibility</span>
<span style={{ color: "#9c9a95" }}>·</span>
<span style={{ color: "#1a1916", fontWeight: 600 }}>Completeness</span>
<span style={{ color: "#9c9a95" }}>·</span>
<span style={{ color: "#1a1916", fontWeight: 600 }}>Provenance</span>
<span style={{ color: "#9c9a95" }}>·</span>
<span style={{ color: "#1a1916", fontWeight: 600 }}>Comparability</span>
</div>
<div style={{ color: "#9c9a95" }}>evalcards.evalevalai.com</div>
</div>
</div>
),
{
...size,
},
)
}
|