Skip to content

Commit 1dc374b

Browse files
authored
fix: updating invalid url (#136)
1 parent 956f035 commit 1dc374b

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

src/pages/index.js

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import React from "react"
2-
import Layout from "@theme/Layout"
3-
import useDocusaurusContext from "@docusaurus/useDocusaurusContext"
4-
import styles from "./index.module.css"
5-
import Card from "../components/Card"
1+
import React from "react";
2+
import Layout from "@theme/Layout";
3+
import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
4+
import styles from "./index.module.css";
5+
import Card from "../components/Card";
66

77
function Home() {
88
const context = useDocusaurusContext();
@@ -11,7 +11,9 @@ function Home() {
1111
<Layout title="Homepage" description="Evmos Docs">
1212
<main>
1313
<br />
14-
<h1 align="center" style={{ fontWeight: '750' }}>Welcome to Evmos Docs</h1>
14+
<h1 align="center" style={{ fontWeight: "750" }}>
15+
Welcome to Evmos Docs
16+
</h1>
1517
<section className={styles.features}>
1618
<div className="container">
1719
<div className="row cards__container">
@@ -27,7 +29,7 @@ function Home() {
2729
/>
2830

2931
<Card
30-
to="./use"
32+
to="./protocol"
3133
header={{
3234
label: "☄️ Learn about Evmos",
3335
}}
@@ -76,8 +78,7 @@ function Home() {
7678
label: "🛡️ Security on Evmos",
7779
}}
7880
body={{
79-
label:
80-
"Learn about our Security Policy",
81+
label: "Learn about our Security Policy",
8182
}}
8283
/>
8384

@@ -96,7 +97,7 @@ function Home() {
9697
</section>
9798
</main>
9899
</Layout>
99-
)
100+
);
100101
}
101102

102-
export default Home
103+
export default Home;

0 commit comments

Comments
 (0)