-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (91 loc) · 2.96 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
Change My Business Hours - Where Do I Need to Change Hours Again?
</title>
<link rel="stylesheet" href="/style.css" />
<!-- Fathom - simple website analytics - https://usefathom.com -->
<script>
(function(f, a, t, h, o, m) {
a[h] =
a[h] ||
function() {
(a[h].q = a[h].q || []).push(arguments);
};
(o = f.createElement('script')),
(m = f.getElementsByTagName('script')[0]);
o.async = 1;
o.src = t;
o.id = 'fathom-script';
m.parentNode.insertBefore(o, m);
})(document, window, 'https://cdn.usefathom.com/tracker.js', 'fathom');
fathom('set', 'siteId', 'QQXXWCAQ');
fathom('trackPageview');
</script>
<!-- / Fathom -->
</head>
<body class="antialiased bg-gray-100 py-8 lg:py-16">
<div class="wrap">
<h1 class="text-blue-900 font-bold text-2xl lg:text-3xl">
Change My Business Hours
</h1>
<p class="text-gray-900 mt-4 lg:mt-6 leading-relaxed text-lg lg:text-xl">
I help run a local business. The nature of what we do is seasonal, so
every few months I have to update hours in a number of places. The only
problem was that I would almost always forget... so I eventually wrote
down the main places I change hours. Thought these might be helpful for
other folks too!
</p>
<ul class="mt-4 lg:mt-6 list-disc">
<li>
<a target="_blank" href="https://www.google.com/business/">
Google My Business
</a>
</li>
<li>
<a target="_blank" href="https://www.facebook.com/">
Facebook Page
</a>
</li>
<li>
<a target="_blank" href="https://mapsconnect.apple.com/">
Apple Maps
</a>
</li>
<li>
<a target="_blank" href="https://squareup.com/dashboard/locations">
SquareUp Locations
</a>
</li>
<li>
<a target="_blank" href="https://www.bingplaces.com/">
Bing Places
</a>
</li>
<li>
Our Website
</li>
</ul>
<p
class="text-gray-900 mt-4 lg:mt-6 leading-relaxed text-base lg:text-lg"
>
Know one that I missed? Send me an email at
<a href="mailto:[email protected]"
>. Or you can submit a pull request over on the
<a href="https://github.com/EldonYoder/changebusinesshours"
>Github Repo!</a
>
</p>
<p
class="text-gray-900 mt-4 lg:mt-6 leading-relaxed text-base lg:text-lg"
>
This is an open source project from
<a target="_blank" href="https://nodlestudios.com/">NodleStudios</a>
</p>
</div>
</body>
</html>