Co-authored-by: Vadim Smirnov <smirnou.vadzim@gmail.com> Co-authored-by: zakariasaad <zakaria.elas@gmail.com> Co-authored-by: Vilfred Sikker <vilfredsikker@gmail.com> Co-authored-by: Kasper <kasper@medusa-commerce.com> Co-authored-by: Sebastian Rindom <skrindom@gmail.com> Co-authored-by: Kasper Fabricius Kristensen <45367945+kasperkristensen@users.noreply.github.com>
21 lines
589 B
JavaScript
21 lines
589 B
JavaScript
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>
|
|
)
|
|
}
|