Skip to content

Commit d7a75dd

Browse files
committed
WIP homepage
1 parent f0c3d87 commit d7a75dd

9 files changed

Lines changed: 92 additions & 24 deletions

File tree

static/css/core.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
--container-width: 768px;
1717

1818
/* Typography */
19-
--font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
19+
--font-primary: 'Inter', sans-serif;
2020
--font-jersey: 'Jersey', serif;
2121

2222
/* Font sizes */

static/css/homepage.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.htitle {
2-
font-size: var(--text-3xl);
2+
font-size: 3.5em;
33
font-weight: var(--weight-bold);
44
margin: 0;
55
}
@@ -58,6 +58,6 @@
5858
}
5959

6060
.hthesis {
61-
width: 70%;
61+
width: 60%;
6262
margin: 0 auto;
6363
}

static/images/clash.svg

Lines changed: 0 additions & 14 deletions
This file was deleted.
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading

static/images/logos/swe-llama.svg

Lines changed: 63 additions & 0 deletions
Loading

templates/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>{% block title %}CodeClash{% endblock %}</title>
77
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/main.css') }}">
8-
<link rel="icon" type="image/svg" href="{{ url_for('static', filename='images/clash.svg') }}">
8+
<link rel="icon" type="image/svg" href="{{ url_for('static', filename='images/logos/clash.svg') }}">
99
{% block head_extra %}{% endblock %}
1010
</head>
1111
<body>

templates/index.html

Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{% block content %}
66
<section style="text-align:center;">
77
<img
8-
src="/static/images/clash_new.svg"
8+
src="/static/images/logos/clash.svg"
99
alt="CodeClash Logo"
1010
style="height: 8rem; margin: 1em 0 0.5em 0;"
1111
/>
@@ -76,12 +76,30 @@
7676

7777
<section class="hthesis">
7878
<h2 style="text-align: center;">Why CodeClash?</h2>
79-
<p>LMs have gotten pretty good at solving GitHub issues.</p>
8079
<p>
81-
But real software development isn't a series of isolated tasks.
82-
It's about understanding higher order goals, making tradeoffs, and evolving a codebase over time.
80+
LMs have gotten pretty good at solving GitHub issues.
81+
<a href="http://swebench.com/">
82+
<img
83+
src="/static/images/logos/swe-llama.svg"
84+
alt="SWEBench Logo"
85+
style="height:1em; margin-left:0.2em;"
86+
/>
87+
</a>
8388
</p>
84-
<p>With CodeClash, we're moving from task-oriented to goal-oriented software development.</p>
89+
<p>But real software development isn't a series of isolated tasks.</p>
90+
<p>It's driven by <i>goals</i>.</p>
91+
<p>
92+
Improve user retention, increase revenue, reduce costs.
93+
We build to achieve outcomes, not to close tickets.
94+
</p>
95+
<p>What if AI evaluations reflected this dynamism of real-world software development?</p>
96+
<p>We introduce CodeClash, an initial effort towards benchmarking goal-oriented software engineering</p>
97+
</section>
98+
99+
<hr />
100+
101+
<section class="hthesis">
102+
<h2 style="text-align: center;">Our Results</h2>
85103
<p>
86104
In CodeClash, language models build and evolve their own codebase over multiple rounds.
87105
Each round has two phases: edit, then compete. Models can write notes, analyze past rounds,
@@ -95,7 +113,6 @@ <h2 style="text-align: center;">Why CodeClash?</h2>
95113
in solving problems beyond specific tickets:
96114
</p>
97115
</section>
98-
99116
<div class="h3columns">
100117
<div class="hfeature">
101118
<span>

0 commit comments

Comments
 (0)