From 7063b199b4748a9c354ed37e64cdc84c512f2c0c Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Thu, 14 Dec 2023 15:30:34 +0100 Subject: refactor(pages): rewrite helpers to output schema in json-ld format * make sure url are absolutes * nest breadcrumb schema in webpage schema * trim HTML tags from content/description * use a regular script instead of next/script (with the latter the schema is not updated on route change) * place the script in document head * add keywords, wordCount and readingTime keys in BlogPosting schema * fix breadcrumbs in search page (without query) * add tests (a `MatchInlineSnapshot` will be better but Prettier 3 is not supported yet) --- src/components/templates/layout/site-header/site-header.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/components/templates/layout/site-header/site-header.tsx') diff --git a/src/components/templates/layout/site-header/site-header.tsx b/src/components/templates/layout/site-header/site-header.tsx index 3e06350..91add77 100644 --- a/src/components/templates/layout/site-header/site-header.tsx +++ b/src/components/templates/layout/site-header/site-header.tsx @@ -1,4 +1,5 @@ import { type ForwardRefRenderFunction, forwardRef } from 'react'; +import { AUTHOR_ID } from '../../../../utils/constants'; import { Header, type HeaderProps } from '../../../atoms'; import { SiteBranding } from './site-branding'; import styles from './site-header.module.scss'; @@ -16,7 +17,11 @@ const SiteHeaderWithRef: ForwardRefRenderFunction< return (
- +
); -- cgit v1.2.3