Skip to content

Commit

Permalink
fix: reflect site description correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
su8ru committed Nov 14, 2022
1 parent c024321 commit 5fa092d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
6 changes: 4 additions & 2 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@ module.exports = {
{ name: 'twitter:card', content: 'summary_large_image' },
{
name: 'description',
content: 'Frourio is the full stack framework for TypeScript.',
content:
'Frourio is a CLI tool that enables static type checking by Typescript for communication between client-side and server-side.',
},
{
property: 'og:description',
content: 'Frourio is the full stack framework for TypeScript.',
content:
'Frourio is a CLI tool that enables static type checking by Typescript for communication between client-side and server-side.',
},
],
colorMode: {
Expand Down
5 changes: 1 addition & 4 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,7 @@ function Home() {
const context = useDocusaurusContext();
const { siteConfig } = context;
return (
<Layout
title={siteConfig.tagline}
description="Description will go into a meta tag in <head />"
>
<Layout title={siteConfig.tagline}>
<header className={styles.heroBanner}>
<div className={styles.movingBoxes}>
<MovingBoxes />
Expand Down

0 comments on commit 5fa092d

Please sign in to comment.