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

add a title tag on dynamic strapi pages #85

Merged
merged 1 commit into from
Feb 5, 2024
Merged
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
7 changes: 7 additions & 0 deletions pages/[...slug].js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import Seo from "@/components/elements/seo"
import { useRouter } from "next/router"
import Layout from "../components/layout"
import { getLocalizedPaths } from "utils/localize"
import Head from "next/head"

// The file is called [[...slug]].js because we're using Next's
// optional catch all routes feature. See the related docs:
Expand All @@ -14,6 +15,7 @@ const DynamicPage = ({
sections,
metadata,
preview,
title,
global,
pageContext
}) => {
Expand All @@ -31,6 +33,10 @@ const DynamicPage = ({

return (
<div>
{Boolean(title) && <Head>
<title> { title } | RENCI.org</title>
</Head>}

{/* Add meta tags for SEO*/}
<Seo metadata={metadata} />
{/* Display content sections */}
Expand Down Expand Up @@ -81,6 +87,7 @@ export async function getServerSideProps(context) {
sections: contentSections,
metadata: pageData.metaData,
global: globalLocale,
title: pageData.title,
pageContext: {
...pageContext,
// localizedPaths,
Expand Down