Skip to content

Commit

Permalink
feat: update title
Browse files Browse the repository at this point in the history
  • Loading branch information
zeldan committed Dec 29, 2024
1 parent 35ee0f6 commit 7834909
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub fn shell(options: LeptosOptions) -> impl IntoView {
<MetaTags />
<Stylesheet id="leptos" href="/pkg/blog.css" />
<Stylesheet id="katex" href="/katex.min.css" />
<Title text="Tech Diaries - The Official Rust-DD Developer Blog" />
<Title text="Rust-DD Blog – Tech Insights & Consulting" />
<Meta name="hostname" content="rust-dd.com" />
<Meta name="expected-hostname" content="rust-dd.com" />
<Meta
Expand All @@ -40,11 +40,11 @@ pub fn shell(options: LeptosOptions) -> impl IntoView {
<Meta property="og:type" content="website" />
<Meta
property="og:title"
content="Tech Diaries - The Official Rust-DD Developer Blog"
content="Rust-DD Blog – Tech Insights & Consulting"
/>
<Meta
property="og:site_name"
content="Tech Diaries - The Official Rust-DD Developer Blog"
content="Rust-DD Blog – Tech Insights & Consulting"
/>
<Meta
property="og:description"
Expand All @@ -63,7 +63,7 @@ pub fn shell(options: LeptosOptions) -> impl IntoView {
<Meta name="twitter:card" content="summary_large_image" />
<Meta
name="twitter:title"
content="Tech Diaries - The Official Rust-DD Developer Blog"
content="Rust-DD Blog – Tech Insights & Consulting"
/>
<Meta
name="twitter:description"
Expand Down
2 changes: 1 addition & 1 deletion src/pages/home.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pub fn Component() -> impl IntoView {
);

view! {
<Title text="Tech Diaries - The Official Rust-DD Developer Blog" />
<Title text="Rust-DD Blog – Tech Insights & Consulting" />
<Suspense fallback=|| ()>
<div class="gap-4 columns-1 sm:columns-2">
<For
Expand Down
2 changes: 1 addition & 1 deletion src/ssr/server_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ pub async fn generate_rss(db: Surreal<Client>) -> leptos::error::Result<String,
let channel = ChannelBuilder::default()
.title("Rust-DD")
.link("https://rust-dd.com")
.description("Tech Diaries - The Official Rust-DD Developer Blog")
.description("Rust-DD Blog – Tech Insights & Consulting")
.items(
posts
.lock()
Expand Down

0 comments on commit 7834909

Please sign in to comment.