mirror of
https://github.com/skidoodle/erettsegi-browser.git
synced 2026-04-28 05:27:35 +02:00
12 lines
283 B
TypeScript
12 lines
283 B
TypeScript
import { ThemeSwitcher } from '@/components/ThemeSwitcher'
|
|
import { Source } from '@/components/Source'
|
|
|
|
export const Footer = () => {
|
|
return (
|
|
<div className='fixed bottom-0 py-5 left-0 right-0 text-center space-x-5'>
|
|
<Source />
|
|
<ThemeSwitcher />
|
|
</div>
|
|
)
|
|
}
|