diff --git a/polkadot-wiki/src/pages/index.js b/polkadot-wiki/src/pages/index.js index 1f0cf8cb9525..672d1bd952a4 100644 --- a/polkadot-wiki/src/pages/index.js +++ b/polkadot-wiki/src/pages/index.js @@ -19,108 +19,61 @@ import KusamaCanary from "@site/static/img/kusama_canary_white.svg"; function HomeNav() { const NavContainer = ({ children }) => (
- -
{children}
+ + {children}
); - - const NavItem = ({ href, aosDelay, children }) => ( -
{/* Adjusted column classes */} - -
{children}
-
-
- ); - const NavItemTitle = ({ children }) => ( -

{children}

+ const NavItem = ({ href, aosDelay, children, imageSrc, description }) => ( + + +
+ NavItem Image +
+

{children}

+
+ {description} +
+
+
+
+ ); - const NavItemContent = ({ children }) =>
{children}
; - return ( - - - - - Explore - - -

- - Explore Wallets, Applications and Programmes within the Polkadot Ecosystem. - -

-
+ Explore Wallets, Applications and Programmes within the Polkadot Ecosystem.} + > + Explore - - - - - Learn - - -

- - Learn about Polkadot and how it provides Shared Security and Secure Interoperability to its Parachains. - -

-
+ Learn about Polkadot and how it provides Shared Security and Secure Interoperability to its Parachains.} + > + Learn - - - - - Build - - -

- - Most up-to-date Information on the Status of the Development Tools in the Polkadot - Ecosystem. - -

-
+ Most up-to-date Information on the Status of the Development Tools in the Polkadot Ecosystem.} + > + Build - - - - - Maintain - - -

- - Information and Guides on how to Deploy a Node and Run the Network. - -

-
+ Information and Guides on how to Deploy a Node and Run the Network.} + > + Maintain
); diff --git a/polkadot-wiki/static/img/polkadot-guide/Build.png b/polkadot-wiki/static/img/polkadot-guide/Build.png new file mode 100644 index 000000000000..538be10f4648 Binary files /dev/null and b/polkadot-wiki/static/img/polkadot-guide/Build.png differ diff --git a/polkadot-wiki/static/img/polkadot-guide/Explore.png b/polkadot-wiki/static/img/polkadot-guide/Explore.png new file mode 100644 index 000000000000..05f5062c41f9 Binary files /dev/null and b/polkadot-wiki/static/img/polkadot-guide/Explore.png differ diff --git a/polkadot-wiki/static/img/polkadot-guide/Learn.png b/polkadot-wiki/static/img/polkadot-guide/Learn.png new file mode 100644 index 000000000000..e48a8ac44bdf Binary files /dev/null and b/polkadot-wiki/static/img/polkadot-guide/Learn.png differ diff --git a/polkadot-wiki/static/img/polkadot-guide/Maintain.png b/polkadot-wiki/static/img/polkadot-guide/Maintain.png new file mode 100644 index 000000000000..62957ab90958 Binary files /dev/null and b/polkadot-wiki/static/img/polkadot-guide/Maintain.png differ