Skip to content
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
6 changes: 3 additions & 3 deletions apps/web/src/routes/_view/blog/$slug.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@ export const Route = createFileRoute("/_view/blog/$slug")({

return {
meta: [
{ title: article.title },
{ title: `${article.title} - Hyprnote Blog` },
{ name: "description", content: article.meta_description },
{ property: "og:title", content: article.title },
{ property: "og:title", content: `${article.title} - Hyprnote Blog` },
{ property: "og:description", content: article.meta_description },
{ property: "og:type", content: "article" },
{ property: "og:url", content: url },
{ property: "og:image", content: ogImage },
{ name: "twitter:card", content: "summary_large_image" },
{ name: "twitter:title", content: article.title },
{ name: "twitter:title", content: `${article.title} - Hyprnote Blog` },
{ name: "twitter:description", content: article.meta_description },
{ name: "twitter:image", content: ogImage },
...(article.author
Expand Down
4 changes: 2 additions & 2 deletions apps/web/src/routes/_view/blog/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ export const Route = createFileRoute("/_view/blog/")({
},
head: () => ({
meta: [
{ title: "Blog - Hyprnote" },
{ title: "Blog - Hyprnote Blog" },
{
name: "description",
content: "Insights, updates, and stories from the Hyprnote team",
},
{ property: "og:title", content: "Blog - Hyprnote" },
{ property: "og:title", content: "Blog - Hyprnote Blog" },
{
property: "og:description",
content: "Insights, updates, and stories from the Hyprnote team",
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/routes/_view/changelog/$slug.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const Route = createFileRoute("/_view/changelog/$slug")({
const currentVersion = semver.parse(changelog.version);
const isNightly = currentVersion && currentVersion.prerelease.length > 0;

const title = `Hyprnote Changelog - Version ${changelog.version}`;
const title = `Version ${changelog.version} - Hyprnote Changelog`;
const description = `Explore what's new in Hyprnote version ${changelog.version}${isNightly ? " (Nightly)" : ""}.`;
const url = `https://hyprnote.com/changelog/${changelog.slug}`;
const ogImageUrl = `https://hyprnote.com/og?type=changelog&version=${encodeURIComponent(changelog.version)}`;
Expand Down
16 changes: 16 additions & 0 deletions apps/web/src/routes/_view/changelog/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,22 @@ export const Route = createFileRoute("/_view/changelog/")({
const changelogs = getChangelogList();
return { changelogs };
},
head: () => ({
meta: [
{ title: "Changelog - Hyprnote Changelog" },
{
name: "description",
content: "Track every update, improvement, and fix to Hyprnote",
},
{ property: "og:title", content: "Changelog - Hyprnote Changelog" },
{
property: "og:description",
content: "Track every update, improvement, and fix to Hyprnote",
},
{ property: "og:type", content: "website" },
{ property: "og:url", content: "https://hyprnote.com/changelog" },
],
}),
});

type SemanticVersionGroup = {
Expand Down
12 changes: 9 additions & 3 deletions apps/web/src/routes/_view/docs/$.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,21 @@ export const Route = createFileRoute("/_view/docs/$")({

return {
meta: [
{ title: doc.title },
{ title: `${doc.title} - Hyprnote Documentation` },
{ name: "description", content: doc.summary || doc.title },
{ property: "og:title", content: doc.title },
{
property: "og:title",
content: `${doc.title} - Hyprnote Documentation`,
},
{ property: "og:description", content: doc.summary || doc.title },
{ property: "og:type", content: "article" },
{ property: "og:url", content: url },
{ property: "og:image", content: ogImageUrl },
{ name: "twitter:card", content: "summary_large_image" },
{ name: "twitter:title", content: doc.title },
{
name: "twitter:title",
content: `${doc.title} - Hyprnote Documentation`,
},
{ name: "twitter:description", content: doc.summary || doc.title },
{ name: "twitter:image", content: ogImageUrl },
],
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/routes/_view/templates/$slug.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const Route = createFileRoute("/_view/templates/$slug")({

return {
meta: [
{ title: `${template.title} - Meeting Template - Hyprnote` },
{ title: `${template.title} - Hyprnote Templates` },
{ name: "description", content: template.description },
{
property: "og:title",
Expand Down
7 changes: 5 additions & 2 deletions apps/web/src/routes/_view/templates/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,16 @@ export const Route = createFileRoute("/_view/templates/")({
},
head: () => ({
meta: [
{ title: "Meeting Templates - Hyprnote" },
{ title: "Meeting Templates - Hyprnote Templates" },
{
name: "description",
content:
"Discover our library of AI meeting templates. Get structured summaries for sprint planning, sales calls, 1:1s, and more. Create custom templates for your workflow.",
},
{ property: "og:title", content: "Meeting Templates - Hyprnote" },
{
property: "og:title",
content: "Meeting Templates - Hyprnote Templates",
},
{
property: "og:description",
content:
Expand Down