diff options
author | 2024-04-28 23:01:04 +0100 | |
---|---|---|
committer | 2024-04-28 23:01:04 +0100 | |
commit | 823605704574b18f60951f86c5ce91566bed3952 (patch) | |
tree | 2062c960a461af8a35af83c6daa679594094b8f6 | |
parent | Fix 404 page (diff) |
Fix meta tags
-rw-r--r-- | src/layout/page.tsx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/layout/page.tsx b/src/layout/page.tsx index c133462..ef6facd 100644 --- a/src/layout/page.tsx +++ b/src/layout/page.tsx @@ -17,6 +17,11 @@ const GlobalStyle = createGlobalStyle` margin-right: 5vw; color: #fff; } + + a { + color: #fff; + text-decoration: underline; + } `; const CenterImage = styled.img` @@ -72,6 +77,7 @@ export const generateHeader = (title: string, description: string) => { <link rel="preconnect" href="https://fonts.gstatic.com" /> <link href="https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap" rel="stylesheet"></link> <meta name="description" content={description} /> + <meta name="og:description" content={description} /> <meta name="og:title" content={title} /> <meta name="og:image" content={logoPng} /> <meta name="theme-color" content="#a0cef3" /> |