feat(fs.dev): Added theme support
This commit is contained in:
parent
84ffe26a76
commit
e1ecd0cb98
26 changed files with 834 additions and 96 deletions
32
packages/freesewing.shared/components/navigation/primary.js
Normal file
32
packages/freesewing.shared/components/navigation/primary.js
Normal file
|
@ -0,0 +1,32 @@
|
|||
import Icon from 'shared/components/icon/index.js'
|
||||
|
||||
const PrimaryMenu = props => {
|
||||
|
||||
return (
|
||||
<nav className={`
|
||||
sm:max-w-sm
|
||||
md:max-w-md
|
||||
lg:max-w-lg
|
||||
xl:max-w-xl
|
||||
bg-base-200
|
||||
`}>
|
||||
<details>
|
||||
<summary className='flex row uppercase font-bold text-lg gap-4'>
|
||||
<Icon />
|
||||
Tutorials
|
||||
</summary>
|
||||
<div className='pl-4'>
|
||||
More stuff here
|
||||
</div>
|
||||
</details>
|
||||
<ul>
|
||||
<li>Tutorials</li>
|
||||
<li>Guides</li>
|
||||
<li>Howtos</li>
|
||||
<li>Reference</li>
|
||||
</ul>
|
||||
</nav>
|
||||
)
|
||||
}
|
||||
|
||||
export default PrimaryMenu
|
Loading…
Add table
Add a link
Reference in a new issue