Skip to content

Commit f0c8d25

Browse files
committed
add meta stuff
1 parent a95de77 commit f0c8d25

File tree

8 files changed

+45
-27
lines changed

8 files changed

+45
-27
lines changed

docs/index.html

Lines changed: 16 additions & 16 deletions
Large diffs are not rendered by default.

src/app.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<meta charset="utf-8" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
77
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8-
<link rel="icon" type="image/svg+xml" href="/favicon.svg?v=racecar" />
9-
<link rel="icon" type="image/x-icon" href="/favicon.ico?v=racecar" />
10-
<link rel="shortcut icon" href="/favicon.ico?v=racecar" />
8+
<link rel="icon" type="image/svg+xml" href="/assets/images/formula-code-icon.svg" />
9+
<link rel="icon" type="image/png" href="/assets/images/formula-code-icon.png" />
10+
<link rel="shortcut icon" href="/assets/images/formula-code-icon.png" />
1111
%sveltekit.head%
1212
</head>
1313

src/components/layout/Meta.svelte

Lines changed: 23 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<script>
22
export let title = "FormulaCode";
3-
export let description = "FormulaCode is the first large-scale analysis of the holistic ability of LLM agents to optimize codebases.";
3+
export let description =
4+
"FormulaCode is the first large-scale analysis of the holistic ability of LLM agents to optimize codebases.";
45
export let url = "https://formula-code.github.io/";
5-
export let keywords = "Code Optimization, Large Language Models, LLMs, AI Agents, Software Performance, Machine Learning, AI Research";
6-
export let preloadFont = [
7-
8-
];
6+
export let keywords =
7+
"Code Optimization, Large Language Models, LLMs, AI Agents, Software Performance, Machine Learning, AI Research";
8+
export let preloadFont = [];
99
</script>
1010

1111
<svelte:head>
@@ -21,8 +21,15 @@
2121
<meta property="og:type" content="article" />
2222
<meta property="og:locale" content="en_US" />
2323

24-
<!-- <meta property="og:image" content="{url}/assets/images/social2.jpg" /> -->
25-
<meta property="og:image:type" content="image/jpeg" />
24+
<meta
25+
property="og:image"
26+
content="{url}assets/images/formula-code-banner.png"
27+
/>
28+
<meta
29+
property="og:image:alt"
30+
content="FormulaCode Data Analysis Logo and Banner"
31+
/>
32+
<meta property="og:image:type" content="image/png" />
2633
<meta property="og:image:width" content="1200" />
2734
<meta property="og:image:height" content="600" />
2835

@@ -31,9 +38,17 @@
3138
<meta name="twitter:creator" content="@atharvas" />
3239
<meta name="twitter:title" content={title} />
3340
<meta name="twitter:description" content={description} />
34-
<!-- <meta name="twitter:image:src" content="{url}/assets/images/social2.jpg" /> -->
41+
<meta
42+
name="twitter:image:src"
43+
content="{url}assets/images/formula-code-banner.png"
44+
/>
45+
<meta
46+
name="twitter:image:alt"
47+
content="FormulaCode Data Analysis Logo and Banner"
48+
/>
3549

3650
<meta name="robots" content="max-image-preview:large" />
51+
<meta name="theme-color" content="#ffffff" />
3752

3853
<link rel="canonical" href="{url}/" />
3954

427 KB
Loading

static/assets/images/formula-code-banner.svg

Lines changed: 1 addition & 0 deletions
Loading
376 KB
Loading

static/assets/images/formula-code-icon.svg

Lines changed: 1 addition & 0 deletions
Loading

static/assets/images/icml2025-formulacode-overview.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)