From da1d7874bb4c67404fea4f15636aac23fa799319 Mon Sep 17 00:00:00 2001 From: mfahampshire Date: Fri, 18 Oct 2024 15:06:41 +0200 Subject: [PATCH] also moved matrix images to correct place --- documentation/docs/components/landing-page.tsx | 10 +++++----- documentation/docs/components/matrix-link.tsx | 2 +- .../images/landing}/developer-docs.png | Bin .../images/landing}/network-docs.png | Bin .../images/landing}/operator-guide.png | Bin .../images => public/images/landing}/sdk-docs.png | Bin .../docs/{ => public}/images/matrix-logo.png | Bin 7 files changed, 6 insertions(+), 6 deletions(-) rename documentation/docs/{components/images => public/images/landing}/developer-docs.png (100%) rename documentation/docs/{components/images => public/images/landing}/network-docs.png (100%) rename documentation/docs/{components/images => public/images/landing}/operator-guide.png (100%) rename documentation/docs/{components/images => public/images/landing}/sdk-docs.png (100%) rename documentation/docs/{ => public}/images/matrix-logo.png (100%) diff --git a/documentation/docs/components/landing-page.tsx b/documentation/docs/components/landing-page.tsx index 2c75380d6c..0a3fb469af 100644 --- a/documentation/docs/components/landing-page.tsx +++ b/documentation/docs/components/landing-page.tsx @@ -3,10 +3,10 @@ import { Box, Grid, Typography } from "@mui/material"; import Image from "next/image"; import Link from "next/link"; -import networkDocs from "./images/network-docs.png"; -import developerDocs from "./images/developer-docs.png"; -import sdkDocs from "./images/sdk-docs.png"; -import operatorGuide from "./images/operator-guide.png"; +import networkDocs from "../public/images/landing/network-docs.png"; +import developerDocs from "../public/images/landing/developer-docs.png"; +import sdkDocs from "../public/images/landing/sdk-docs.png"; +import operatorGuide from "../public/images/landing/operator-guide.png"; export const LandingPage = () => { const squares = [ @@ -21,7 +21,7 @@ export const LandingPage = () => { description: "Guides and maintenance: if you want to run a node, start here", - href: "/operators", + href: "/operators/introduction", icon: operatorGuide, }, { diff --git a/documentation/docs/components/matrix-link.tsx b/documentation/docs/components/matrix-link.tsx index 8b1ab22208..754857688a 100644 --- a/documentation/docs/components/matrix-link.tsx +++ b/documentation/docs/components/matrix-link.tsx @@ -1,7 +1,7 @@ import { Box } from "@mui/material"; import Image from "next/image"; import Link from "next/link"; -import matrixLogo from "../images/matrix-logo.png"; +import matrixLogo from "../public/images/matrix-logo.png"; export const Matrix = () => { return (