diff --git a/src/pages/index.js b/src/pages/index.js
index 7352b0fd..0e9f4bec 100644
--- a/src/pages/index.js
+++ b/src/pages/index.js
@@ -1,50 +1,51 @@
-import React from 'react';
-import clsx from 'clsx';
-import Layout from '@theme/Layout';
-import Link from '@docusaurus/Link';
-import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
-import useBaseUrl from '@docusaurus/useBaseUrl';
+import React from "react";
+import clsx from "clsx";
+import Layout from "@theme/Layout";
+import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
+import useBaseUrl from "@docusaurus/useBaseUrl";
+import TableOfContents from "@site/table_of_content.mdx";
-import styles from './styles.module.css';
+import styles from "./styles.module.css";
const features = [
{
- title: 'Modular and Configurable',
- imageUrl: 'img/undraw_Content_creator_re_pt5b.svg',
+ title: "Modular and Configurable",
+ imageUrl: "img/undraw_Content_creator_re_pt5b.svg",
description: (
<>
- Honeycomb was designed to be modular, composable, easily configured to deploy to Linux, Mac,
-
- Windows, Browsers, PsiTurk, and more
-
+ Honeycomb was designed to be modular, composable, easily configured to
+ deploy to Linux, Mac, Windows, Browsers, PsiTurk, and more
>
),
},
{
- title: 'Packed with automation',
- imageUrl: 'img/undraw_User_flow_re_bvfx.svg',
+ title: "Packed with automation",
+ imageUrl: "img/undraw_User_flow_re_bvfx.svg",
description: (
- <>Honeycomb includes GitHub Actions that build the executables/deployments for you.>
+ <>
+ Honeycomb includes GitHub Actions that build the executables/deployments
+ for you.
+ >
),
},
{
- title: 'Based on trusted and mature libraries',
- imageUrl: 'img/undraw_Code_review_re_woeb.svg',
- description: <>Honeycomb relies on mature libraries such as JSPsych, React and Electron>,
+ title: "Based on trusted and mature libraries",
+ imageUrl: "img/undraw_Code_review_re_woeb.svg",
+ description: (
+ <>
+ Honeycomb relies on mature libraries such as JSPsych, React and Electron
+ >
+ ),
},
];
function Feature({ imageUrl, title, description }) {
const imgUrl = useBaseUrl(imageUrl);
return (
-