Newer
Older
import React from 'react'
import { Content } from "@onegeo/gatsby-theme-onegeo";
import { Menu, MenuMobile } from "@onegeo/gatsby-theme-onegeo";
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import { Link } from "gatsby";
const menu = () => {
return (
<Content>
<div className="prose">
<Link to="/doc/core">Retour</Link>
<h1>Menu</h1>
<h2>Props</h2>
<div className="mockup-code">
<pre>
<code>
{`const menu = [
{
title: "Decouvrir",
},
{
title: "Actualités",
},
{
title: "A propos",
},
{
title: "Mentions légales",
},
{
title: "Parents",
subMenu: [
{
title: "sousmenu1",
},
{
title: "sousmenu2",
},
],
},
];`}
</code>
</pre>
</div>
<h2>Example</h2>
</div>
<div className='mt-5'>
<h3 className='underline underline-offset-1'>Menu classique</h3>
<div className="flex gap-6 m-4">
<Menu />
</div>
</div>
<div>
<h3 className='underline underline-offset-1'>Menu mobile</h3>
<div className="flex gap-6 m-4">
<MenuMobile />
</div>