Skip to content

Commit

Permalink
fix(layouts): scale and open graph stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
mbaraa committed Jun 12, 2024
1 parent d9a872e commit c7fafea
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
7 changes: 6 additions & 1 deletion app/views/layouts/default.templ
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,13 @@ templ Default(title string, children ...templ.Component) {
<link rel="mask-icon" href="/static/safari-pinned-tab.svg" color="#4C8C36"/>
<meta name="msapplication-TileColor" content="#4C8C36"/>
<meta name="theme-color" content="#4C8C36"/>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"/>
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=2, user-scalable=yes"
/>
<meta name="description" content="Create, Share and Play Music Playlists."/>
<meta name="og:description" content="Create, Share and Play Music Playlists."/>
<meta name="og:title" content="DankMuzikk"/>
<meta
name="keywords"
content="dankmuzikk,dank,dank music,music,music playlist,share playlist,group playlist"
Expand Down
9 changes: 5 additions & 4 deletions app/views/layouts/raw.templ
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,13 @@ templ Raw(title string, children ...templ.Component) {
<link rel="mask-icon" href="/static/safari-pinned-tab.svg" color="#4C8C36"/>
<meta name="msapplication-TileColor" content="#4C8C36"/>
<meta name="theme-color" content="#4C8C36"/>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"/>
<meta name="description" content="Create, Share and Play Music Playlists."/>
<meta
name="keywords"
content="dankmuzikk,dank,dank music,music,music playlist,share playlist,group playlist"
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=2, user-scalable=yes"
/>
<meta name="description" content="Create, Share and Play Music Playlists."/>
<meta name="og:description" content="Create, Share and Play Music Playlists."/>
<meta name="og:title" content="DankMuzikk"/>
<link
defer
rel="stylesheet"
Expand Down

0 comments on commit c7fafea

Please sign in to comment.