We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fb7f93 commit e7aa1cbCopy full SHA for e7aa1cb
src/assets/og-image.jpg
-101 KB
src/components/meta.svelte
@@ -1,6 +1,4 @@
1
<script>
2
- import ogImage from '../assets/og-image.jpg';
3
-
4
let { title, description, url } = $props();
5
</script>
6
@@ -10,7 +8,6 @@
10
8
11
9
<meta property="og:url" content="https://{url}" />
12
<meta property="og:type" content="website" />
13
- <meta property="og:image" content={ogImage} />
14
<meta property="og:title" content={title} />
15
<meta property="og:description" content={description} />
16
src/components/section.svelte
@@ -13,15 +13,4 @@
</section>
<style>
- 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
27
</style>
0 commit comments