Skip to content

Commit

Permalink
update homepage (#15)
Browse files Browse the repository at this point in the history
* Update snapshot.md

* Update index.tsx

* Update docusaurus.config.js

* Update docusaurus.config.js

* upd docusaurus.config.js

---------

Co-authored-by: Influenzo <52459025+vasylcode@users.noreply.github.com>
  • Loading branch information
redwest88 and vasylcode committed Sep 9, 2023
1 parent c75ef25 commit 44e0662
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 15 deletions.
10 changes: 7 additions & 3 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const darkCodeTheme = require("prism-react-renderer/themes/dracula");
/** @type {import('@docusaurus/types').Config} */
const config = {
title: "NODES WIKI",
tagline: "your nodes troubleshooter.",
tagline: "your nodes assistant.",
favicon: "img/favicon.svg",
url: "https://wiki.f5nodes.com",
baseUrl: "/",
Expand Down Expand Up @@ -74,7 +74,7 @@ const config = {
type: "doc",
docId: "intro",
position: "left",
label: "Intro",
label: "Introduction",
},
{
href: "https://github.com/f5nodes/wiki",
Expand All @@ -93,13 +93,17 @@ const config = {
title: "Docs",
items: [
{
label: "Intro",
label: "Introduction",
to: "/intro",
},
{
label: "Celestia",
to: "/category/celestia",
},
{
label: "ZetaChain",
to: "/zetachain",
},
],
},
{
Expand Down
19 changes: 7 additions & 12 deletions src/components/HomepageFeatures/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,34 +10,29 @@ type FeatureItem = {

const FeatureList: FeatureItem[] = [
{
title: "Always relevant Info",
title: "Open-Source Knowledge",
Svg: require("@site/static/img/undraw1.svg").default,
description: (
<>
Nodes Wiki provides an up-to-date information on blockchain nodes. Our community-driven platform allows
anyone to contribute by adding their own info, ensuring that the platform remains comprehensive and
relevant.
Being open-source, Nodes Wiki invites contributions from across the globe, ensuring a rich and dynamic repository of content that benefits everyone.
</>
),
},
{
title: "What for?",
title: "Up-to-date Information",
Svg: require("@site/static/img/undraw2.svg").default,
description: (
<>
If you're experiencing issues with your nodes, Nodes Wiki is here to help. The platform provides a variety
of solutions to all types of problems.
Nodes Wiki is committed to keeping you at the forefront, with timely updates reflecting the latest developments and useful resources.
</>
),
},
{
title: "Easy to Use",
title: "Validator-Driven Content",
Svg: require("@site/static/img/undraw3.svg").default,
description: (
<>
Nodes Wiki is user-friendly and easy to navigate, with simple scripts that make it easy for users of all
skill levels to find the information they need, including scripts for installing and updating nodes,
downloading snapshots, adding live peers, and finding public endpoints.
With content sourced and scrutinized by some of the most active validators in the blockchain world, Nodes Wiki stands as a beacon of reliable and expert-backed information.
</>
),
},
Expand All @@ -50,7 +45,7 @@ function Feature({ title, Svg, description }: FeatureItem) {
<Svg className={styles.featureSvg} role="img" />
</div>
<div className="text--center padding-horiz--md">
<h3>{title}</h3>
<h3><b>{title}</b></h3>
<p>{description}</p>
</div>
</div>
Expand Down

0 comments on commit 44e0662

Please sign in to comment.