diff --git a/components/Footer.js b/components/Footer.js new file mode 100644 index 0000000..e69de29 diff --git a/components/Header.js b/components/Header.js new file mode 100644 index 0000000..e69de29 diff --git a/pages/index.js b/pages/index.js index ced1042..91663fe 100644 --- a/pages/index.js +++ b/pages/index.js @@ -9,6 +9,25 @@ import Card from "../components/Card"; import { gardenFilePath, GARDENS_PATH } from "../utils/mdxUtils"; import { motion } from "framer-motion"; +const tools = [ + { + title: "Roam Research", + description: "A personal notes system for interconnected thought", + url: "https://roamresearch.com/", + }, + { + title: "Roam Garden", + description: + "Allows you to turn a Roam Research graph into a public website", + url: "https://roam.garden/", + }, + { + title: "Gatsby Theme Garden", + description: "Gatsby theme that supports using Roam as a source", + url: "https://github.com/mathieudutour/gatsby-digital-garden/", + }, +]; + export default function Index({ gardens }) { return ( @@ -58,6 +77,23 @@ export default function Index({ gardens }) { {gardens.slice(0, 7).map((garden) => ( ))} +
  • + + + View all gardens + + +
  • + + + {tools.slice(0, 7).map((tool) => ( +
    +

    + {tool.title} +

    +

    {tool.description}

    +
    + ))}