Proper captilization of WireGuard

This commit is contained in:
Daniel Lundin
2019-10-09 13:02:48 +02:00
parent 0aeff20c97
commit 21816558f3
7 changed files with 18 additions and 18 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
<h1>About</h1>
<p>
Wireguard UI is an <a href="https://embark-studios.com/">Embark Studios</a> Open Source project.
WireGuard UI is an <a href="https://embark-studios.com/">Embark Studios</a> Open Source project.
</p>
<p>
@@ -11,7 +11,7 @@ For contributions and feedback, please see the
<h2>License</h2>
<p>
Wireguard UI is licensed under <a href="https://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>
WireGuard UI is licensed under <a href="https://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>
</p>
<p>Copyright &copy; 2019, Embark Studios AB</p>
+1 -1
View File
@@ -1,5 +1,5 @@
<svelte:head>
<title>Wireguard VPN</title>
<title>WireGuard VPN</title>
</svelte:head>
<script>
+1 -1
View File
@@ -19,7 +19,7 @@
<TopAppBar variant="static" color="primary">
<Row>
<Section>
<Title>Wireguard VPN</Title>
<Title>WireGuard VPN</Title>
</Section>
<Section align="end" toolbar>
<small class="user">Logged in as {user}</small>
+1 -1
View File
@@ -4,7 +4,7 @@ import App from "./App.svelte";
const app = new App({
target: document.body,
props: {
name: "Wireguard VPN"
name: "WireGuard VPN"
}
});