Files
erettsegi-browser/src/components/Footer.tsx
T
2023-09-28 21:34:59 +02:00

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>
)
}