Really fix component names

This commit is contained in:
MrTimscampi
2021-05-06 15:15:46 +02:00
parent 669452a46e
commit e43c81a847
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ import Layout from '@theme/Layout';
export default function Clients() { export default function Clients() {
return ( return (
<Layout> <Layout>
<h1>Downloads</h1> <h1>Clients</h1>
<p>Placeholder page</p> <p>Placeholder page</p>
</Layout> </Layout>
); );
+1 -1
View File
@@ -4,7 +4,7 @@ import Layout from '@theme/Layout';
export default function Contact() { export default function Contact() {
return ( return (
<Layout> <Layout>
<h1>Contribute</h1> <h1>Contact</h1>
<p>Placeholder page</p> <p>Placeholder page</p>
</Layout> </Layout>
); );
+1 -1
View File
@@ -4,7 +4,7 @@ import Layout from '@theme/Layout';
export default function Contribute() { export default function Contribute() {
return ( return (
<Layout> <Layout>
<h1>Clients</h1> <h1>Contribute</h1>
<p>Placeholder page</p> <p>Placeholder page</p>
</Layout> </Layout>
); );
+1 -1
View File
@@ -4,7 +4,7 @@ import Layout from '@theme/Layout';
export default function Downloads() { export default function Downloads() {
return ( return (
<Layout> <Layout>
<h1>Contact</h1> <h1>Downloads</h1>
<p>Placeholder page</p> <p>Placeholder page</p>
</Layout> </Layout>
); );