mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 07:26:52 +00:00
28 lines
1021 B
JavaScript
28 lines
1021 B
JavaScript
import { faHome, faSearch } from '@fortawesome/free-solid-svg-icons'
|
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
|
import Link from 'next/link'
|
|
import React from 'react'
|
|
import JumpToTopButton from '@/themes/Medium/components/JumpToTopButton'
|
|
|
|
export default function BottomMenuBar ({ className }) {
|
|
return (
|
|
<div className={'sticky bottom-0 w-full h-12 bg-white ' + className}>
|
|
<div className='flex justify-between h-full shadow-card'>
|
|
<Link href='/' passHref>
|
|
<div className='flex w-full items-center justify-center cursor-pointer'>
|
|
<FontAwesomeIcon icon={faHome} />
|
|
</div>
|
|
</Link>
|
|
<Link href='/search' passHref>
|
|
<div className='flex w-full items-center justify-center cursor-pointer'>
|
|
<FontAwesomeIcon icon={faSearch} />
|
|
</div>
|
|
</Link>
|
|
<div className='flex w-full items-center justify-center cursor-pointer'>
|
|
<JumpToTopButton/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|