Skip to content

Commit 41a9f23

Browse files
committed
chore: run format
1 parent 32c9dd3 commit 41a9f23

File tree

2 files changed

+43
-39
lines changed

2 files changed

+43
-39
lines changed

Diff for: index.html

+42-38
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,46 @@
11
<!doctype html>
22
<html lang="en">
3+
<head>
4+
<!-- Global Metadata -->
5+
<meta charset="utf-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no" />
7+
<link rel="shortcut icon" href="favicon.ico" />
8+
<title>Atlas Utah : Provided by the UGRC</title>
9+
<meta name="title" content="Atlas Utah : Provided by the UGRC" />
10+
<meta
11+
name="description"
12+
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."
13+
/>
14+
<link rel="canonical" href="https://atlas.utah.gov/" />
15+
<!-- Open Graph / Facebook -->
16+
<meta property="og:type" content="website" />
17+
<meta property="og:url" content="https://atlas.utah.gov/" />
18+
<meta property="og:title" content="Atlas Utah : Provided by the UGRC" />
19+
<meta
20+
property="og:description"
21+
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."
22+
/>
23+
<meta property="og:image" content="https://atlas.utah.gov/atlas-social-card.png" />
24+
<meta property="og:image:width" content="1200" />
25+
<meta property="og:image:height" content="630" />
26+
<!-- Twitter -->
27+
<meta property="twitter:card" content="summary_large_image" />
28+
<meta property="twitter:url" content="https://atlas.utah.gov/" />
29+
<meta property="twitter:title" content="Atlas Utah : Provided by the UGRC" />
30+
<meta
31+
property="twitter:description"
32+
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."
33+
/>
34+
<meta property="twitter:image" content="https://atlas.utah.gov/atlas-social-card.png" />
35+
<!-- Preloads -->
36+
<link rel="preconnect" href="https://fonts.googleapis.com" />
37+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
38+
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+3&display=swap" rel="stylesheet" />
39+
</head>
340

4-
<head>
5-
<!-- Global Metadata -->
6-
<meta charset="utf-8" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no" />
8-
<link rel="shortcut icon" href="favicon.ico" />
9-
<title>Atlas Utah : Provided by the UGRC</title>
10-
<meta name="title" content="Atlas Utah : Provided by the UGRC">
11-
<meta name="description"
12-
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." />
13-
<link rel="canonical" href="https://atlas.utah.gov/">
14-
<!-- Open Graph / Facebook -->
15-
<meta property="og:type" content="website" />
16-
<meta property="og:url" content="https://atlas.utah.gov/" />
17-
<meta property="og:title" content="Atlas Utah : Provided by the UGRC" />
18-
<meta property="og:description"
19-
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." />
20-
<meta property="og:image" content="https://atlas.utah.gov/atlas-social-card.png" />
21-
<meta property="og:image:width" content="1200" />
22-
<meta property="og:image:height" content="630" />
23-
<!-- Twitter -->
24-
<meta property="twitter:card" content="summary_large_image" />
25-
<meta property="twitter:url" content="https://atlas.utah.gov/" />
26-
<meta property="twitter:title" content="Atlas Utah : Provided by the UGRC" />
27-
<meta property="twitter:description"
28-
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." />
29-
<meta property="twitter:image" content="https://atlas.utah.gov/atlas-social-card.png" />
30-
<!-- Preloads -->
31-
<link rel="preconnect" href="https://fonts.googleapis.com" />
32-
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
33-
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+3&display=swap" rel="stylesheet" />
34-
</head>
35-
36-
<body class="size-full bg-white text-zinc-700 subpixel-antialiased dark:bg-zinc-800 dark:text-zinc-50">
37-
<noscript> You need to enable JavaScript to run this app. </noscript>
38-
<div id="root"></div>
39-
<script type="module" src="/src/main.tsx"></script>
40-
</body>
41-
41+
<body class="size-full bg-white text-zinc-700 subpixel-antialiased dark:bg-zinc-800 dark:text-zinc-50">
42+
<noscript> You need to enable JavaScript to run this app. </noscript>
43+
<div id="root"></div>
44+
<script type="module" src="/src/main.tsx"></script>
45+
</body>
4246
</html>

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
"type": "module",
66
"scripts": {
77
"build": "tsc -b && vite build",
8+
"check": "tsc -b",
89
"copy:arcgis": "cpy \"./node_modules/@arcgis/core/assets/**\" ./public/assets",
910
"dev": "npm start",
1011
"format": "prettier . --write",
1112
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
12-
"check": "tsc -b",
1313
"preview": "vite preview",
1414
"start": "vite",
1515
"start:ci": "vite --host",

0 commit comments

Comments
 (0)