Skip to content
Closed
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
2 changes: 1 addition & 1 deletion src/components/blocks/blog/BlogPostHero.astro
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const { tags, title, author, publishDate } = Astro.props
{
author ? (
<p class="page-header__text">
Written by, {author} {publishDate && 'on ' + publishDate}
Written by {author} {publishDate && 'on ' + publishDate}
</p>
) : (
publishDate && <p class="page-header__text">Published on, {publishDate}</p>
Expand Down
4 changes: 2 additions & 2 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import Modal from '../components/blocks/modal/SignUp.astro'
import Header from '../components/blocks/head/Header.astro'
import Toast from '../components/ui/Toast.astro'
// Scripts
import Scriprs from '../components/scripts/LocalScripts.astro'
import Scripts from '../components/scripts/LocalScripts.astro'
import GoogleTagManagerBody from '../components/scripts/googleTagManagerBody.astro'
// Styles
import '../styles/global.css'
Expand Down Expand Up @@ -48,6 +48,6 @@ const { title, description, ogImage, noindex, classes } = Astro.props
<Footer />
<Modal />
<Toast />
<Scriprs />
<Scripts />
</body>
</html>
4 changes: 2 additions & 2 deletions src/pages/blog/tags/[tag].astro
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ const { posts } = Astro.props
// Content
// - SEO
const SEO = {
title: `Foxi | posts tagges as ` + tag,
title: `Foxi | posts tagged as ` + tag,
description:
"Explore Foxi's latest news designed to enhance productivity, ensure top-notch security, and integrate seamlessly with your favorite tools. Join thousands of satisfied users and transform your workflow with Foxi today!"
}

// - Page Header
const header = {
title: `Foxi posts about <br><strong>` + tag + `</strong>`,
text: `Stay informed, stay productive with all the latest fromFoxi.`
text: `Stay informed, stay productive with all the latest from Foxi.`
}
---

Expand Down