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

Fix: seo title and description changes #1305

Merged
merged 2 commits into from
Jun 27, 2024
Merged
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
4 changes: 2 additions & 2 deletions src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<html lang='en'>

<head>
<title>Mage</title>
<meta name='description' content='Mage is a re/streaming platform'>
<title>Mage - A re/streaming platform</title>
<meta name='description' content='Stream everywhere effortlessly'>
<meta name='author' content='Code Crow'>
<meta name='keywords' content='Gaming, Coding, Streaming, Clips'>

Expand Down
5 changes: 1 addition & 4 deletions src/lib/components/Browse/DrawerCreateChannel.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,7 @@
Create a new channel
</p>
<div class="flex flex-col p-3">
<p class="text-s">
When you create a channel, you may share your screen, webcam, and chat with the
community
</p>
<p class="text-s">A channel is used to organize your stream, chat, and VoDs</p>
<p class="text-lg font-semibold mt-10">
Please hide all sensitive data before going live.
</p>
Expand Down
4 changes: 2 additions & 2 deletions src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
<meta name="twitter:title" content={$page.data.seo?.title || 'Mage - A re/streaming platform'} />
<meta
name="twitter:description"
content={$page.data.seo?.description || 'Mage is a re/streaming platform'} />
content={$page.data.seo?.description || 'Stream everywhere effortlessly'} />
<meta name="twitter:image" content={$page.data.seo?.image || '%sveltekit.assets%/banner.jpg'} />
<meta name="twitter:image:alt" content={$page.data.seo?.imageAlt || 'Mage Banner'} />

Expand All @@ -99,7 +99,7 @@
<meta property="og:title" content={$page.data.seo?.title || 'Mage - A re/streaming platform'} />
<meta
property="og:description"
content={$page.data.seo?.description || 'Mage is a re/streaming platform'} />
content={$page.data.seo?.description || 'Stream everywhere effortlessly'} />
<meta property="og:image" content={$page.data.seo?.image || '%sveltekit.assets%/banner.jpg'} />
<meta property="og:image:alt" content={$page.data.seo?.imageAlt || 'Mage Banner'} />

Expand Down
Loading