-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
45 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"plugins": ["prettier-plugin-organize-imports", "prettier-plugin-packagejson", "prettier-plugin-tailwindcss"], | ||
"printWidth": 120, | ||
"singleQuote": true | ||
"singleQuote": true, | ||
"tailwindFunctions": ["clsx", "tv", "twMerge", "twJoin"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,46 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<!-- Global Metadata --> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no" /> | ||
<link rel="shortcut icon" href="favicon.ico" /> | ||
<title>Atlas Utah : Provided by the UGRC</title> | ||
<meta name="title" content="Atlas Utah : Provided by the UGRC" /> | ||
<meta | ||
name="description" | ||
content="A web mapping application that will show you Discover base maps, kitchen sink react components, and the esri javascript api. It is a GitHub template that you can use to create your own website that is mobile friendly with a dark mode." | ||
/> | ||
<link rel="canonical" href="https://atlas.utah.gov/" /> | ||
<!-- Open Graph / Facebook --> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:url" content="https://atlas.utah.gov/" /> | ||
<meta property="og:title" content="Atlas Utah : Provided by the UGRC" /> | ||
<meta | ||
property="og:description" | ||
content="A web mapping application that will show you Discover base maps, kitchen sink react components, and the esri javascript api. It is a GitHub template that you can use to create your own website that is mobile friendly with dark mode." | ||
/> | ||
<meta property="og:image" content="https://atlas.utah.gov/atlas-social-card.png" /> | ||
<meta property="og:image:width" content="1200" /> | ||
<meta property="og:image:height" content="630" /> | ||
<!-- Twitter --> | ||
<meta property="twitter:card" content="summary_large_image" /> | ||
<meta property="twitter:url" content="https://atlas.utah.gov/" /> | ||
<meta property="twitter:title" content="Atlas Utah : Provided by the UGRC" /> | ||
<meta | ||
property="twitter:description" | ||
content="A web mapping application that will show you Discover base maps, kitchen sink react components, and the esri javascript api. It is a GitHub template that you can use to create your own website that is mobile friendly with dark mode." | ||
/> | ||
<meta property="twitter:image" content="https://atlas.utah.gov/atlas-social-card.png" /> | ||
<!-- Preloads --> | ||
<link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | ||
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+3&display=swap" rel="stylesheet" /> | ||
</head> | ||
|
||
<head> | ||
<!-- Global Metadata --> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no" /> | ||
<link rel="shortcut icon" href="favicon.ico" /> | ||
<title>Atlas Utah : Provided by the UGRC</title> | ||
<meta name="title" content="Atlas Utah : Provided by the UGRC"> | ||
<meta name="description" | ||
content="A web mapping application that will show you Discover base maps, kitchen sink react components, and the esri javascript api. It is a GitHub template that you can use to create your own website that is mobile friendly with a dark mode." /> | ||
<link rel="canonical" href="https://atlas.utah.gov/"> | ||
<!-- Open Graph / Facebook --> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:url" content="https://atlas.utah.gov/" /> | ||
<meta property="og:title" content="Atlas Utah : Provided by the UGRC" /> | ||
<meta property="og:description" | ||
content="A web mapping application that will show you Discover base maps, kitchen sink react components, and the esri javascript api. It is a GitHub template that you can use to create your own website that is mobile friendly with dark mode." /> | ||
<meta property="og:image" content="https://atlas.utah.gov/atlas-social-card.png" /> | ||
<meta property="og:image:width" content="1200" /> | ||
<meta property="og:image:height" content="630" /> | ||
<!-- Twitter --> | ||
<meta property="twitter:card" content="summary_large_image" /> | ||
<meta property="twitter:url" content="https://atlas.utah.gov/" /> | ||
<meta property="twitter:title" content="Atlas Utah : Provided by the UGRC" /> | ||
<meta property="twitter:description" | ||
content="A web mapping application that will show you Discover base maps, kitchen sink react components, and the esri javascript api. It is a GitHub template that you can use to create your own website that is mobile friendly with dark mode." /> | ||
<meta property="twitter:image" content="https://atlas.utah.gov/atlas-social-card.png" /> | ||
<!-- Preloads --> | ||
<link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | ||
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+3&display=swap" rel="stylesheet" /> | ||
</head> | ||
|
||
<body class="size-full bg-white text-zinc-700 subpixel-antialiased dark:bg-zinc-800 dark:text-zinc-50"> | ||
<noscript> You need to enable JavaScript to run this app. </noscript> | ||
<div id="root"></div> | ||
<script type="module" src="/src/main.tsx"></script> | ||
</body> | ||
|
||
<body class="size-full bg-white text-zinc-700 subpixel-antialiased dark:bg-zinc-800 dark:text-zinc-50"> | ||
<noscript> You need to enable JavaScript to run this app. </noscript> | ||
<div id="root"></div> | ||
<script type="module" src="/src/main.tsx"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters