Skip to content

Commit

Permalink
feat: Twitter Slinks (#270)
Browse files Browse the repository at this point in the history
  • Loading branch information
ugur-eren authored Jul 29, 2024
1 parent 59a1d2e commit 6ddfda8
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 11 deletions.
26 changes: 16 additions & 10 deletions packages/frontend/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,19 @@
<meta name="twitter:description" content="A framework for building safer memecoins." />
<meta name="twitter:image" content="https://unruggable.meme/images/social-hero.png" />

<link rel="apple-touch-icon" sizes="180x180" href="%PUBLIC_URL%/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="%PUBLIC_URL%/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="%PUBLIC_URL%/favicon/favicon-16x16.png">
<link rel="manifest" href="%PUBLIC_URL%/favicon/site.webmanifest">
<link rel="mask-icon" href="%PUBLIC_URL%/favicon/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#00aba9">
<meta name="theme-color" content="#ffffff">
<!-- Twitter Slink -->
<meta name="twitter:player" content="https://unruggable.meme/deploy" />
<meta name="twitter:player:stream" content="https://unruggable.meme/deploy" />
<meta name="twitter:player:width" content="600" />
<meta name="twitter:player:height" content="600" />

<link rel="apple-touch-icon" sizes="180x180" href="%PUBLIC_URL%/favicon/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="%PUBLIC_URL%/favicon/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="%PUBLIC_URL%/favicon/favicon-16x16.png" />
<link rel="manifest" href="%PUBLIC_URL%/favicon/site.webmanifest" />
<link rel="mask-icon" href="%PUBLIC_URL%/favicon/safari-pinned-tab.svg" color="#5bbad5" />
<meta name="msapplication-TileColor" content="#00aba9" />
<meta name="theme-color" content="#ffffff" />

<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#ff007a" />
Expand All @@ -38,11 +44,11 @@
<script src="https://unpkg.com/react-dom/umd/react-dom.production.min.js" crossorigin></script>

<!-- Inter font -->
<link rel="preconnect" href="https://rsms.me/">
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
<link rel="preconnect" href="https://rsms.me/" />
<link rel="stylesheet" href="https://rsms.me/inter/inter.css" />

<title>Unruggable interface</title>

<style>
@supports (font-variation-settings: normal) {
* {
Expand Down
5 changes: 4 additions & 1 deletion packages/frontend/src/theme/css/global.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ globalStyle('*', {
globalStyle('html, body', {
margin: 0,
padding: 0,
overflow: 'hidden',
})

globalStyle('html', {
Expand All @@ -23,12 +24,14 @@ globalStyle('html', {
})

globalStyle('html, body, #root', {
minHeight: '100%',
height: '100%',
})

globalStyle('#root', {
position: 'relative',
width: '100%',
minHeight: '100%',
overflow: 'auto',
})

globalStyle('html', {
Expand Down

0 comments on commit 6ddfda8

Please sign in to comment.