feat(footer): drop footer

This commit is contained in:
kunish 2023-08-30 00:23:42 +08:00
parent 2d9daa96cc
commit fc0fbf9dae
No known key found for this signature in database
GPG Key ID: 647A12B4F782C430
2 changed files with 0 additions and 14 deletions

View File

@ -1,6 +1,5 @@
import { Route, Routes, useNavigate } from '@solidjs/router'
import { Show, lazy, onMount } from 'solid-js'
import { Footer } from '~/components/Footer'
import { Header } from '~/components/Header'
import { curTheme, selectedEndpoint } from '~/signals'
@ -42,8 +41,6 @@ export const App = () => {
<Route path="/setup" component={Setup} />
</Routes>
</div>
<Footer />
</div>
)
}

View File

@ -1,11 +0,0 @@
export const Footer = () => (
<footer class="footer footer-center hidden rounded bg-base-200 p-2 text-base-content sm:block">
<a
class="font-semibold"
href="https://github.com/metacubex/metacubexd"
target="_blank"
>
metacubexd
</a>
</footer>
)