2023-05-02 15:49:05 +01:00
|
|
|
import type { Component } from 'solid-js'
|
2023-04-06 14:18:26 +00:00
|
|
|
|
2023-05-02 15:49:05 +01:00
|
|
|
import { Downloaders, TitleBar } from './components/layout'
|
|
|
|
|
|
|
|
const Main: Component = () => {
|
2023-04-06 14:18:26 +00:00
|
|
|
return (
|
2023-05-02 15:49:05 +01:00
|
|
|
<>
|
|
|
|
<TitleBar />
|
|
|
|
|
|
|
|
<main class='relative flex h-full w-screen flex-col items-center justify-center bg-[#242424] py-20'>
|
|
|
|
<span class='mb-20 text-white'>I would like to:</span>
|
2023-04-06 14:18:26 +00:00
|
|
|
|
2023-05-02 15:49:05 +01:00
|
|
|
<Downloaders />
|
|
|
|
</main>
|
|
|
|
</>
|
2023-04-06 14:18:26 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Main
|