docs: Adds new index page and design tweaks (#833)

This commit is contained in:
Oliver Windall Juhl
2021-11-22 17:01:18 +01:00
committed by GitHub
parent f387b4919f
commit 0380cdf0b2
17 changed files with 305 additions and 119 deletions
-20
View File
@@ -1,20 +0,0 @@
import React from "react"
import { Banner } from "../components/Banner/"
import { Intro } from "../components/Intro/"
import { Layout } from "../components/Layout/"
import styles from "./index.module.css"
export default function Home() {
return (
<Layout title={`Docs`} description="some description...">
<div className={styles.container}>
<Banner />
<Intro
title="Explore and learn how to use Medusa."
desc="Get up and running within 5 minutes."
/>
{/* <TabsPanel items={CARDS_DATA} /> */}
</div>
</Layout>
)
}