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

Update keywords #76

Merged
merged 3 commits into from
Mar 4, 2025
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
9 changes: 9 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,15 @@ export default defineConfig({
content: "Toolkit for real-time, programmable video and audio mixing.",
},
},
{
tag: "meta",
attrs: {
"data-rh": "true",
name: "keywords",
content:
"live stream, video composition, multimedia composition, react, video mixing, audio mixing, real-time, live compositor, media server",
},
},
{
tag: "meta",
attrs: { property: "twitter:title", content: "Smelter – Live stream mixing simplified" },
Expand Down
2 changes: 1 addition & 1 deletion src/components/home/usage/UsageSection.astro
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const USE_CASES = [
iconUrl: docker,
text: "Deploy Smelter as a standalone server. Its language-agnostic API integrates easily with your solutions. With Dockerfiles and comprehensive deployment guidelines in our documentation, setting up Smelter is effortless.",
buttons: {
docs: "https://www.smelter.dev/http-api",
docs: "https://smelter.dev/http-api",
"docker registry": "https://github.com/software-mansion/smelter/pkgs/container/smelter",
},
},
Expand Down
2 changes: 1 addition & 1 deletion src/components/navigation/NavBar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const smelterLogoSmallImage = await getImage({
</Fragment>
<nav class="flex h-18 md:h-20">
<div class="flex justify-between max-w-[1800px] w-full m-auto px-4 sm:px-8 lg:px-20">
<a href="https://www.smelter.dev/">
<a href="https://smelter.dev/">
<Image src={smelterLogo} alt="Smelter logo" class="hidden md:block" loading="eager" />
<Image src={smelterLogoSmall} alt="Smelter logo" class="md:hidden" loading="eager" />
</a>
Expand Down
1 change: 1 addition & 0 deletions src/layouts/MainLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ const { canonicalUrl } = Astro.props;
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta data-rh="true" name="keywords" content="live stream, video composition, multimedia composition, react, video mixing, audio mixing, real-time, live compositor, media server">
<link rel="icon" type="image/png" href="/favicons/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicons/favicon.svg" />
<link rel="shortcut icon" href="/favicons/favicon.ico" />
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import UseCasesSection from "../components/home/use-cases/UseCasesSection.astro"
import MainLayout from "../layouts/MainLayout.astro";
---

<MainLayout canonicalUrl="https://www.smelter.dev">
<MainLayout canonicalUrl="https://smelter.dev">
<main class="flex justify-center min-h-screen w-full overflow-clip">
<div class="w-full max-w-[1536px] relative">
<HeroSection />
Expand Down
2 changes: 1 addition & 1 deletion src/pages/license/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import LicenseSection from "../../components/license/LicenseSection.astro";
import MainLayout from "../../layouts/MainLayout.astro";
---

<MainLayout canonicalUrl="https://www.smelter.dev/license">
<MainLayout canonicalUrl="https://smelter.dev/license">
<main class="max-w-[1536px] 2xl:mx-auto">
<LicenseSection />
</main>
Expand Down