Skip to content

Commit

Permalink
feat: change description
Browse files Browse the repository at this point in the history
  • Loading branch information
ooooorobo committed Aug 19, 2023
1 parent d3e231f commit 8206a46
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/client/renderer.tsx
Expand Up @@ -4,6 +4,7 @@ import { Store } from 'redux';
import { App } from './view/App';
import { NotFoundPage } from './view/pages/404';
import { ExpiredPage } from './view/pages/expired';
import { Platform } from '../server/types/platform';

const defaultHtml = (assetPath: string, content: string) => `
<!DOCTYPE html>
Expand All @@ -18,9 +19,9 @@ const defaultHtml = (assetPath: string, content: string) => `
gtag('config', 'G-GNDJL4812E');
</script>
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<meta name="description" content="๋ถ€๋‹ด๊ฐ์€ ์ ๊ฒŒ, ๋ชฉํ‘œ๋Š” ํฌ๊ฒŒ">
<meta name="description" content="๋‹น์‹ ์˜ ๋ชฉํ‘œ๋ฅผ ๋”์šฑ ์„ ๋ช…ํ•˜๊ฒŒ">
<meta property="og:title" content="๋ฐ˜๋‹ค๋ผํŠธ">
<meta property="og:description" content="๋ถ€๋‹ด๊ฐ์€ ์ ๊ฒŒ, ๋ชฉํ‘œ๋Š” ํฌ๊ฒŒ">
<meta property="og:description" content="๋‹น์‹ ์˜ ๋ชฉํ‘œ๋ฅผ ๋”์šฑ ์„ ๋ช…ํ•˜๊ฒŒ">
<meta property="og:image" content="${assetPath}/image/ogimage.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
Expand All @@ -40,6 +41,7 @@ type AppProps = {
assetPath: string;
isMobile: boolean;
appDownloadUrl: string;
platform: Platform;
};

export const renderer = ({
Expand Down

0 comments on commit 8206a46

Please sign in to comment.