Merge branch 'develop'
This commit is contained in:
commit
0ac691a5c8
2 changed files with 22 additions and 0 deletions
|
@ -3,10 +3,12 @@ import Main from './components/Main'
|
|||
import ProfileForm from './components/ProfileForm'
|
||||
import BadgeList from './components/BadgeList'
|
||||
import Layout from './components/Layout'
|
||||
import VersionLink from './components/VersionLink'
|
||||
|
||||
function App() {
|
||||
return (
|
||||
<Layout>
|
||||
<VersionLink></VersionLink>
|
||||
<Main>
|
||||
<ProfileForm></ProfileForm>
|
||||
<Toaster richColors position="top-center" />
|
||||
|
|
20
src/app/options/components/VersionLink.tsx
Normal file
20
src/app/options/components/VersionLink.tsx
Normal file
|
@ -0,0 +1,20 @@
|
|||
import { FC } from 'react'
|
||||
import { Button } from '@/components/ui/Button'
|
||||
import Link from '@/components/Link'
|
||||
import { version } from '@/../package.json'
|
||||
|
||||
const VersionLink: FC = () => {
|
||||
return (
|
||||
<Button
|
||||
size="lg"
|
||||
variant="ghost"
|
||||
className="fixed right-4 top-2 rounded-full px-3 text-base font-medium text-primary"
|
||||
>
|
||||
<Link href="https://github.com/molvqingtai/WebChat/releases">Version: v{version}</Link>
|
||||
</Button>
|
||||
)
|
||||
}
|
||||
|
||||
VersionLink.displayName = 'VersionLink'
|
||||
|
||||
export default VersionLink
|
Loading…
Reference in a new issue