Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New link preview #27

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />

%sveltekit.head%
</head>
<body>
Expand Down
8 changes: 8 additions & 0 deletions src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@
<svelte:head>
<meta name="color-scheme" content={$theme} />
<link rel="stylesheet" href={`${base}/themes/${$theme}.css`} />

<meta property="og:title" content="GambiConf 2023" />
<meta property="og:site_name" content="GambiConf 2023"/>
<meta property="og:url" content="https://gambiconf.dev/"/>
<meta property="og:description" content="É a gambiconf né dog." />

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Aqui precisamos de algo que funcione bem para trazer pessoas através do link, algo como:

Venha conhecer projetos e ideias incríveis que misturam humor, criatividade e computação. Dias 25 e 26 de Novembro na USP - Campus Butantã. Inscreva-se já!

<meta property="og:type" content="website" />
<meta property="og:image" content="./static/logo.png" />
<!-- <meta name="twitter:card" content="summary_large_image" /> -->

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Necessário?


<Seo />
</svelte:head>
Expand Down