Skip to content

Commit d36263d

Browse files
authored
style: add Status page link to all footers (koala73#1498)
1 parent 9d0aafd commit d36263d

4 files changed

Lines changed: 8 additions & 0 deletions

File tree

blog-site/src/layouts/Base.astro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ const keywordTags = keywords ? keywords.split(',').map(k => k.trim()).slice(0, 6
116116
<a href="https://github.com/koala73/worldmonitor" target="_blank" rel="noopener noreferrer">GitHub</a>
117117
<a href="https://github.com/koala73/worldmonitor/discussions" target="_blank" rel="noopener noreferrer">Discussions</a>
118118
<a href="https://x.com/worldmonitorai" target="_blank" rel="noopener noreferrer">X</a>
119+
<a href="https://status.worldmonitor.app/" target="_blank" rel="noopener noreferrer">Status</a>
119120
</div>
120121
<div class="footer-copy">
121122
&copy; {new Date().getFullYear()} World Monitor

docs/docs.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,10 @@
297297
{
298298
"label": "X",
299299
"href": "https://x.com/worldmonitorai"
300+
},
301+
{
302+
"label": "Status",
303+
"href": "https://status.worldmonitor.app/"
300304
}
301305
]
302306
}

pro-test/src/App.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -936,6 +936,7 @@ const Footer = () => (
936936
<a href="https://github.com/koala73/worldmonitor" target="_blank" rel="noreferrer" className="hover:text-wm-text transition-colors">GitHub</a>
937937
<a href="https://github.com/koala73/worldmonitor/discussions" target="_blank" rel="noreferrer" className="hover:text-wm-text transition-colors">Discussions</a>
938938
<a href="https://x.com/worldmonitorai" target="_blank" rel="noreferrer" className="hover:text-wm-text transition-colors">X</a>
939+
<a href="https://status.worldmonitor.app/" target="_blank" rel="noreferrer" className="hover:text-wm-text transition-colors">Status</a>
939940
</div>
940941
<span className="text-[10px] opacity-40 mt-4 md:mt-0">&copy; {new Date().getFullYear()} WorldMonitor</span>
941942
</div>
@@ -1135,6 +1136,7 @@ const EnterprisePage = () => (
11351136
<a href="https://github.com/koala73/worldmonitor" target="_blank" rel="noreferrer" className="hover:text-wm-text transition-colors">GitHub</a>
11361137
<a href="https://github.com/koala73/worldmonitor/discussions" target="_blank" rel="noreferrer" className="hover:text-wm-text transition-colors">Discussions</a>
11371138
<a href="https://x.com/worldmonitorai" target="_blank" rel="noreferrer" className="hover:text-wm-text transition-colors">X</a>
1139+
<a href="https://status.worldmonitor.app/" target="_blank" rel="noreferrer" className="hover:text-wm-text transition-colors">Status</a>
11381140
</div>
11391141
<span className="text-[10px] opacity-40 mt-4 md:mt-0">&copy; {new Date().getFullYear()} WorldMonitor</span>
11401142
</div>

src/app/panel-layout.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,7 @@ export class PanelLayoutManager implements AppModule {
328328
<a href="https://github.com/koala73/worldmonitor" target="_blank" rel="noopener">GitHub</a>
329329
<a href="https://github.com/koala73/worldmonitor/discussions" target="_blank" rel="noopener">Discussions</a>
330330
<a href="https://x.com/worldmonitorai" target="_blank" rel="noopener">X</a>
331+
<a href="https://status.worldmonitor.app/" target="_blank" rel="noopener">Status</a>
331332
</nav>
332333
<span class="site-footer-copy">&copy; ${new Date().getFullYear()} World Monitor</span>
333334
</footer>

0 commit comments

Comments
 (0)