Skip to content

Commit

Permalink
Fix site title (#4186)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshwooding authored Sep 25, 2024
1 parent 39277e0 commit 3fba23f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion site/docs/sitemap.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title: Sitemap
description: Salt sitemap
layout: ProductDiscover
---

Expand Down
3 changes: 3 additions & 0 deletions site/src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import {
BaseUrlProvider,
Image,
Link,
Metadata,
} from "@jpmorganchase/mosaic-site-components";
import { Sitemap } from "@jpmorganchase/mosaic-sitemap-component";
import { StoreProvider, useCreateStore } from "@jpmorganchase/mosaic-store";
Expand All @@ -22,6 +23,7 @@ import clsx from "clsx";
import { SessionProvider } from "next-auth/react";
import type { AppProps } from "next/app";
import { Open_Sans, PT_Mono } from "next/font/google";
import Head from "next/head";
import { type ReactNode, useMemo } from "react";
import * as saltComponents from "../components";
import * as saltLayouts from "../layouts";
Expand Down Expand Up @@ -102,6 +104,7 @@ export default function MyApp({
return (
<SessionProvider>
<StoreProvider value={createStore()}>
<Metadata Component={Head} />
<ThemeProvider
themeClassName={clsx(
themeClassName,
Expand Down
2 changes: 1 addition & 1 deletion site/src/pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function Document() {
return (
<Html lang="en">
<Head>
<meta name={"description"} content={description} />
<meta name="description" content={description} />
</Head>
<body>
<Main />
Expand Down

0 comments on commit 3fba23f

Please sign in to comment.