Initial
3
.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
.parcel-cache
|
||||
node_modules
|
||||
dist
|
||||
4
.parcelrc
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"extends": ["@parcel/config-default"],
|
||||
"reporters": ["...", "parcel-reporter-static-files-copy"]
|
||||
}
|
||||
14227
package-lock.json
generated
Normal file
17
package.json
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "rvvs",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"scripts": {
|
||||
"serve": "parcel serve src/index.html",
|
||||
"build": "parcel build src/index.html"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@parcel/packager-raw-url": "^2.0.0",
|
||||
"@parcel/transformer-webmanifest": "^2.0.0",
|
||||
"parcel": "^2.0.0",
|
||||
"parcel-reporter-static-files-copy": "^1.3.0"
|
||||
}
|
||||
}
|
||||
BIN
src/favicon.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
src/icon_144x144.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
src/icon_168x168.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
src/icon_192x192.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
src/icon_48x48.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
src/icon_72x72.png
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
BIN
src/icon_96x96.png
Normal file
|
After Width: | Height: | Size: 6.0 KiB |
1
src/index.css
Normal file
@@ -0,0 +1 @@
|
||||
@import "npm:tailwindcss/dist/tailwind.css"
|
||||
44
src/index.html
Normal file
@@ -0,0 +1,44 @@
|
||||
<!doctype html>
|
||||
<html lang="en" dir="ltr">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<!-- Boilerplate-->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
|
||||
<title>Page Title less than 55 characters</title>
|
||||
<meta name="description" content="Description of the page less than 150 characters">
|
||||
<link rel="icon" type="image/png" href="favicon.png">
|
||||
<link rel="manifest" href="manifest.json">
|
||||
<!-- OSX Specific -->
|
||||
<link rel="apple-touch-icon" href="favicon.png">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<!-- Primary Meta Tags -->
|
||||
<title>River Valley Veterinary Service</title>
|
||||
<meta name="title" content="River Valley Veterinary Service">
|
||||
<meta name="description" content="People who care about animals and what not">
|
||||
|
||||
<!-- Open Graph / Facebook -->
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:url" content="https://metatags.io/">
|
||||
<meta property="og:title" content="River Valley Veterinary Service">
|
||||
<meta property="og:description" content="People who care about animals and what not">
|
||||
<meta property="og:image" content="favicon.png">
|
||||
|
||||
<!-- Twitter -->
|
||||
<meta property="twitter:card" content="summary_large_image">
|
||||
<meta property="twitter:url" content="https://metatags.io/">
|
||||
<meta property="twitter:title" content="River Valley Veterinary Service">
|
||||
<meta property="twitter:description" content="People who care about animals and what not">
|
||||
<meta property="twitter:image" content="favicon.png">
|
||||
|
||||
<!-- Style -->
|
||||
<link rel="stylesheet" href="npm:tailwindcss/dist/tailwind.css" />
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
46
src/manifest.json
Normal file
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"name": "River Valley Veterinary Service",
|
||||
"short_name": "RVVS",
|
||||
"start_url": "/",
|
||||
"display": "browser",
|
||||
"background_color": "#000000",
|
||||
"description": "River Valley Vet Service Progressive Web App",
|
||||
"dir": "ltr",
|
||||
"categories": "health",
|
||||
"lang": "en",
|
||||
"orientation": "any",
|
||||
"scope": "/",
|
||||
"theme_color": "#0000ff",
|
||||
"icons": [
|
||||
{
|
||||
"src": "icon_48x48.png",
|
||||
"sizes": "48x48",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "icon_72x72.png",
|
||||
"sizes": "72x72",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "icon_96x96.png",
|
||||
"sizes": "96x96",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "icon_144x144.png",
|
||||
"sizes": "144x144",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "icon_168x168.png",
|
||||
"sizes": "168x168",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "icon_192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
}
|
||||
]
|
||||
}
|
||||
4
static/robots.txt
Normal file
@@ -0,0 +1,4 @@
|
||||
User-agent: *
|
||||
Allow: /
|
||||
|
||||
Sitemap: http://www.example.com/sitemap.xml
|
||||