Skip to content

Commit

Permalink
a little SEO stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
naueramant committed Feb 7, 2024
1 parent 7abdd52 commit fb829e6
Show file tree
Hide file tree
Showing 6 changed files with 137 additions and 85 deletions.
15 changes: 10 additions & 5 deletions apps/dashboard/index.html
Original file line number Diff line number Diff line change
@@ -1,26 +1,31 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<title>opsway</title>
<title>opsway.io</title>

<meta name="title" content="opsway" />
<meta name="title" content="opsway.io" />
<meta
name="description"
content="Real-time monitoring and operations platform for you websites and services 🚀"
content="Real-time Monitoring, Status Pages and Alerting for your websites
and services 🚀"
/>
<meta
name="keywords"
content="devops,incident-management,monitoring,on-call,status-page,open-source"
content="real-time,monitoring,alerting,status-page,open-source"
/>

<meta name="theme-color" content="#222837" />
<meta name="robots" content="index, follow" />
<meta name="language" content="English" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>

<link href="https://my.opsway.io/" rel="canonical" />

<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" type="image/png" href="/favicon.png" />

Expand Down
70 changes: 55 additions & 15 deletions apps/website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,33 +2,73 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/img/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />

<title>opsway.io</title>

<meta name="color-scheme" content="dark" />
<meta name="theme-color" content="#1d2128" />

<link rel="icon" type="image/svg+xml" href="/img/favicon.svg" />
<link rel="canonical" href="https://opsway.io" />

<title>
opsway.io: Real-time Monitoring, Status Pages and Alerting for your
websites and services 🚀
</title>

<meta name="robots" content="index, follow" />
<meta name="googlebot" content="index, follow" />
<meta name="google" content="nositelinkssearchbox" />

<!-- Document metadata -->

<meta
name="title"
content="opsway: Real-time Monitoring, Status Pages and Alerting for your websites
and services 🚀"
/>
<meta
name="description"
content="opsway helps you monitor your websites and services in real-time, create status pages and get alerts when things go wrong."
/>
<meta
name="keywords"
content="real-time,monitoring,alerting,status-page,open-source"
/>

<!-- Open Graph Protocol -->

<meta property="og:type" content="website" />
<meta property="og:url" content="https://opsway.io" />
<meta
property="og:title"
content="opsway: Real-time Monitoring, Status Pages and Alerting for your websites
and services 🚀"
/>
<meta
property="og:description"
content="opsway helps you monitor your websites and services in real-time, create status pages and get alerts when things go wrong."
/>
<meta property="og:image" content="https://opsway.io/img/cover.png" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>

<script>
(function(d,t) {
var BASE_URL="https://chatwoot.opsway.io";
var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src=BASE_URL+"/packs/js/sdk.js";
(function (d, t) {
var BASE_URL = "https://chatwoot.opsway.io";
var g = d.createElement(t),
s = d.getElementsByTagName(t)[0];
g.src = BASE_URL + "/packs/js/sdk.js";
g.defer = true;
g.async = true;
s.parentNode.insertBefore(g,s);
g.onload=function(){
s.parentNode.insertBefore(g, s);
g.onload = function () {
window.chatwootSDK.run({
websiteToken: 'ZdFNDWAZYUbwoTDF73xK8w4V',
baseUrl: BASE_URL
})
}
})(document,"script");
websiteToken: "ZdFNDWAZYUbwoTDF73xK8w4V",
baseUrl: BASE_URL,
});
};
})(document, "script");
</script>
</body>
</html>
Binary file added apps/website/public/img/cover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
72 changes: 72 additions & 0 deletions apps/website/public/img/cover.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed apps/website/public/img/favicon.ico
Binary file not shown.
65 changes: 0 additions & 65 deletions apps/website/public/img/rocket.svg

This file was deleted.

0 comments on commit fb829e6

Please sign in to comment.