Skip to content

Commit 0af8a89

Browse files
committed
make some test changes
1 parent 2fb7f93 commit 0af8a89

File tree

3 files changed

+0
-15
lines changed

3 files changed

+0
-15
lines changed

src/assets/og-image.jpg

-101 KB
Binary file not shown.

src/components/meta.svelte

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
<script>
2-
import ogImage from '../assets/og-image.jpg';
3-
42
let { title, description, url } = $props();
53
</script>
64

@@ -10,12 +8,10 @@
108

119
<meta property="og:url" content="https://{url}" />
1210
<meta property="og:type" content="website" />
13-
<meta property="og:image" content={ogImage} />
1411
<meta property="og:title" content={title} />
1512
<meta property="og:description" content={description} />
1613

1714
<meta name="twitter:card" content="summary_large_image" />
18-
<meta name="twitter:image" content={ogImage} />
1915
<meta property="twitter:domain" content={url} />
2016
<meta property="twitter:url" content="https://{url}" />
2117
<meta name="twitter:title" content={title} />

src/components/section.svelte

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,4 @@
1313
</section>
1414

1515
<style>
16-
section {
17-
display: grid;
18-
grid-template-columns: subgrid;
19-
grid-column: leading / trailing;
20-
}
21-
22-
div {
23-
padding-block: var(--s-xl);
24-
text-align: center;
25-
grid-column: c2 / c5;
26-
}
2716
</style>

0 commit comments

Comments
 (0)