Skip to content

Commit

Permalink
Move meta tags above link tags
Browse files Browse the repository at this point in the history
Meta tags should be above link tags.

Also slightly adjust indent.
  • Loading branch information
x753 committed Sep 10, 2024
1 parent 8645fae commit b78cd1d
Showing 1 changed file with 37 additions and 37 deletions.
74 changes: 37 additions & 37 deletions apps/cyberstorm-remix/app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,43 +131,43 @@ function Root() {

return (
<html lang="en">
<head>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/favicon-16x16.png"
/>
<link rel="manifest" href="/site.webmanifest" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#23ffb0" />
<meta name="msapplication-TileColor" content="#29295b" />
<meta name="theme-color" content="#29295b" />
<meta charSet="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<Meta />
<Links />
</head>
<body>
<script
dangerouslySetInnerHTML={{
__html: `window.ENV = ${JSON.stringify(
parsedLoaderOutput.envStuff.ENV
)}`,
}}
/>
<SessionProvider
domain={parsedLoaderOutput.envStuff.ENV.PUBLIC_API_URL}
<head>

Check failure

Code scanning / ESLint

Insert ·· Error

Insert ··
<meta name="msapplication-TileColor" content="#29295b" />

Check failure

Code scanning / ESLint

Insert ·· Error

Insert ··
<meta name="theme-color" content="#29295b" />

Check failure

Code scanning / ESLint

Insert ·· Error

Insert ··
<meta charSet="utf-8" />

Check failure

Code scanning / ESLint

Insert ·· Error

Insert ··
<meta name="viewport" content="width=device-width, initial-scale=1" />

Check failure

Code scanning / ESLint

Insert ·· Error

Insert ··
<Meta />

Check failure

Code scanning / ESLint

Insert ·· Error

Insert ··
<link

Check failure

Code scanning / ESLint

Insert ·· Error

Insert ··
rel="apple-touch-icon"

Check failure

Code scanning / ESLint

Insert ·· Error

Insert ··
sizes="180x180"

Check failure

Code scanning / ESLint

Insert ·· Error

Insert ··
href="/apple-touch-icon.png"

Check failure

Code scanning / ESLint

Insert ·· Error

Insert ··
/>

Check failure

Code scanning / ESLint

Insert ·· Error

Insert ··
<link

Check failure

Code scanning / ESLint

Insert ·· Error

Insert ··
rel="icon"

Check failure

Code scanning / ESLint

Insert ·· Error

Insert ··
type="image/png"

Check failure

Code scanning / ESLint

Insert ·· Error

Insert ··
sizes="32x32"

Check failure

Code scanning / ESLint

Insert ·· Error

Insert ··
href="/favicon-32x32.png"

Check failure

Code scanning / ESLint

Insert ·· Error

Insert ··
/>

Check failure

Code scanning / ESLint

Insert ·· Error

Insert ··
<link

Check failure

Code scanning / ESLint

Insert ·· Error

Insert ··
rel="icon"

Check failure

Code scanning / ESLint

Insert ·· Error

Insert ··
type="image/png"

Check failure

Code scanning / ESLint

Insert ·· Error

Insert ··
sizes="16x16"

Check failure

Code scanning / ESLint

Insert ·· Error

Insert ··
href="/favicon-16x16.png"

Check failure

Code scanning / ESLint

Insert ·· Error

Insert ··
/>

Check failure

Code scanning / ESLint

Insert ·· Error

Insert ··
<link rel="manifest" href="/site.webmanifest" />

Check failure

Code scanning / ESLint

Replace ······ with ········ Error

Replace ······ with ········
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#23ffb0" />

Check failure

Code scanning / ESLint

Insert ·· Error

Insert ··
<Links />

Check failure

Code scanning / ESLint

Insert ·· Error

Insert ··
</head>

Check failure

Code scanning / ESLint

Replace ···· with ······ Error

Replace ···· with ······
<body>

Check failure

Code scanning / ESLint

Insert ·· Error

Insert ··
<script

Check failure

Code scanning / ESLint

Replace ···· with ········ Error

Replace ···· with ········
dangerouslySetInnerHTML={{

Check failure

Code scanning / ESLint

Insert ···· Error

Insert ····
__html: `window.ENV = ${JSON.stringify(

Check failure

Code scanning / ESLint

Replace ········ with ············ Error

Replace ········ with ············
parsedLoaderOutput.envStuff.ENV,

Check failure

Code scanning / ESLint

Replace ··········parsedLoaderOutput.envStuff.ENV, with ··············parsedLoaderOutput.envStuff.ENV Error

Replace ··········parsedLoaderOutput.envStuff.ENV, with ··············parsedLoaderOutput.envStuff.ENV
)}`,

Check failure

Code scanning / ESLint

Replace ········ with ············ Error

Replace ········ with ············
}}

Check failure

Code scanning / ESLint

Insert ···· Error

Insert ····
/>

Check failure

Code scanning / ESLint

Replace ···· with ········ Error

Replace ···· with ········
<SessionProvider

Check failure

Code scanning / ESLint

Insert ···· Error

Insert ····
domain={parsedLoaderOutput.envStuff.ENV.PUBLIC_API_URL}

Check failure

Code scanning / ESLint

Insert ···· Error

Insert ····
>
<LinkingProvider value={LinkLibrary}>
<Toast.Provider toastDuration={10000}>
Expand Down

0 comments on commit b78cd1d

Please sign in to comment.