diff --git a/src/lib/site.ts b/src/lib/site.ts index d5d664c..674fd13 100644 --- a/src/lib/site.ts +++ b/src/lib/site.ts @@ -52,7 +52,7 @@ export const SITE = { export const APPEARANCE = { theme: 'light', accent: 'oxide', - typeset: 'editorial', + typeset: 'modern', background: 'plain', density: 'comfortable', } as const; diff --git a/src/pages/index.astro b/src/pages/index.astro index 54f6723..4583c05 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -44,10 +44,6 @@ const featuredTools = pickCoreTools(allTools); - - ML Systems - An open archive · Est. 2026 - @@ -101,29 +97,23 @@ const featuredTools = pickCoreTools(allTools); All articles → - - {featured.map((p, i) => ( - - - {String(i + 1).padStart(2, '0')} - - {p.data.title} - {p.data.summary} - - {p.data.topicId && {topicName(p.data.topicId)}} - {p.authors.map((a) => a.data.name).join(', ')} - - {formatDate(p.data.date)} · {p.data.readMin} min - - - - - → + + {featured.map((p) => ( + + + {p.data.topicId && {topicName(p.data.topicId)}} + + {p.data.title} + {p.data.summary} + + {p.authors.map((a) => a.data.name).join(', ')} + + {formatDate(p.data.date)} · {p.data.readMin} min - - + + ))} - + ) @@ -142,29 +132,23 @@ const featuredTools = pickCoreTools(allTools); All articles → - - {recent.map((p, i) => ( - - - {String(i + 1).padStart(2, '0')} - - {p.data.title} - {p.data.summary} - - {p.data.topicId && {topicName(p.data.topicId)}} - {p.authors.map((a) => a.data.name).join(', ')} - - {formatDate(p.data.date)} · {p.data.readMin} min - - - - - → + + {recent.map((p) => ( + + + {p.data.topicId && {topicName(p.data.topicId)}} + + {p.data.title} + {p.data.summary} + + {p.authors.map((a) => a.data.name).join(', ')} + + {formatDate(p.data.date)} · {p.data.readMin} min - - + + ))} - + ) @@ -370,142 +354,6 @@ const featuredTools = pickCoreTools(allTools);
{p.data.summary}