Skip to content

Commit 449951b

Browse files
Update website title and author list to latest paper metadata
1 parent 3e09548 commit 449951b

2 files changed

Lines changed: 13 additions & 11 deletions

File tree

app/layout.tsx

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,19 @@ const productionUrl = `${productionOrigin}${productionPath}`;
2121
const siteUrl = process.env.NODE_ENV === "production" ? productionUrl : "http://localhost:3000/";
2222
const ogImagePath = "/WebCompass/og-image.svg";
2323
const faviconPath = "/WebCompass/favicon.svg";
24+
const paperTitle = "WebCompass: Towards Holistic Evaluation of Web Development for Multimodal Code Models";
2425

2526
export const metadata: Metadata = {
26-
title: "WebCompass | A Unified Multimodal Benchmark for Web Coding",
27+
title: paperTitle,
2728
description:
28-
"WebCompass: A unified multimodal benchmark and evaluation framework for web coding across generation, editing, and repair.",
29+
"WebCompass: Towards Holistic Evaluation of Web Development for Multimodal Code Models.",
2930
metadataBase: new URL(process.env.NODE_ENV === "production" ? productionOrigin : "http://localhost:3000"),
3031
alternates: {
3132
canonical: process.env.NODE_ENV === "production" ? productionPath : "/"
3233
},
3334
openGraph: {
34-
title: "WebCompass",
35-
description: "A Unified Multimodal Benchmark and Evaluation Framework for Web Coding",
35+
title: paperTitle,
36+
description: "Towards Holistic Evaluation of Web Development for Multimodal Code Models",
3637
url: siteUrl,
3738
siteName: "WebCompass",
3839
images: [
@@ -48,8 +49,8 @@ export const metadata: Metadata = {
4849
},
4950
twitter: {
5051
card: "summary_large_image",
51-
title: "WebCompass",
52-
description: "A Unified Multimodal Benchmark and Evaluation Framework for Web Coding",
52+
title: paperTitle,
53+
description: "Towards Holistic Evaluation of Web Development for Multimodal Code Models",
5354
images: [ogImagePath]
5455
},
5556
icons: {

data/site.ts

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@
33
export const siteConfig = {
44
name: "WebCompass",
55
title: "WebCompass",
6-
subtitle: "A Unified Multimodal Benchmark and Evaluation Framework for Web Coding",
6+
subtitle: "Towards Holistic Evaluation of Web Development for Multimodal Code Models",
77
tagline:
88
"WebCompass unifies text-, image-, and video-grounded web coding tasks across generation, editing, and repair, with task-aware evaluation for execution, interactivity, and aesthetics.",
99
description:
10-
"Official project page for WebCompass, a unified multimodal benchmark and evaluation framework for realistic web engineering scenarios.",
11-
authors: "Author A, Author B, Author C",
12-
affiliations: "Affiliation 1 · Affiliation 2",
10+
"Official project page for WebCompass: Towards Holistic Evaluation of Web Development for Multimodal Code Models.",
11+
authors:
12+
"Xinping Lei(†), Xinyu Che(†), Junqi Xiong(†), Chenchen Zhang(†), Yukai Huang(†), Chenyu Zhou(†), Haoyang Huang, Minghao Liu, Letian Zhu, Hongyi Ye, Ken Deng(*), Zizheng Zhan, Han Li, Dailin Li, Yifan Yao, Ming Sun, Zhaoxiang Zhang, Jiaheng Liu(*)",
13+
affiliations:
14+
"Nanjing University · Kuaishou Technology · (†) Equal contribution · (*) Corresponding authors",
1315
builtWith: "Next.js, Tailwind CSS, Framer Motion, shadcn/ui",
1416
links: {
1517
paper: "https://arxiv.org/abs/TODO",
@@ -48,4 +50,3 @@ export const overviewHighlights = [
4850

4951
export const overviewAbstract =
5052
"Evaluating web coding requires more than code correctness: success depends on runtime execution, interaction behavior, and visual quality in browser environments. WebCompass addresses this gap with a unified multimodal benchmark spanning text, image, and video inputs, and lifecycle tasks across generation, editing, and repair. The benchmark is designed for realistic front-end engineering scenarios with deterministic construction and evidence-grounded evaluation.";
51-

0 commit comments

Comments
 (0)