Skip to content

Commit

Permalink
Merge pull request #195 from moonstream-to/campaign-progress
Browse files Browse the repository at this point in the history
meta tags
  • Loading branch information
Anton-Mushnin authored Apr 2, 2024
2 parents 08ab834 + 026c1ee commit 9945ba0
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions web/src/components/layout/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@ import Head from "next/head";

import { Flex } from "@chakra-ui/react";

import { FULLCOUNT_ASSETS_PATH } from "../../constants";

const assetsPath = FULLCOUNT_ASSETS_PATH;
import { FULLCOUNT_ASSETS } from "../../constants";

export const siteTitle = "Fullcount - baseball game";

Expand All @@ -23,10 +21,13 @@ export default function Layout({
<Head>
<link rel="icon" href="/favicon.png?v1" />
<title>{title ?? "Fullcount"}</title>
<meta name="description" content="Baseball game" />
<meta name="og:title" content={siteTitle} />
<meta name="keywords" content="baseball, games, fullcount, home run" />
<meta name="og:image" content={`${assetsPath}/fullcount-og-image.png`} />
<meta name="og:title" content={"Fullcount - a baseball strategy game"} />
<meta name="description" content="Baseball strategy game" />
<meta name="keywords" content="baseball, strategy, games, fullcount, home run" />
<meta
name="og:image"
content={`${FULLCOUNT_ASSETS}/banners/website-sharing-thumbnail-2.png`}
/>
</Head>
<Flex
minH="100vh"
Expand Down

0 comments on commit 9945ba0

Please sign in to comment.