Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update homepage #15

Merged
merged 6 commits into from
Sep 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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