blob: 1dbc57423bdd5322569d04b70335b45fc95357a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import { ReactComponent as HomeMD } from '../md/main.md';
export default function Home () {
return(
<>
<div>
<div className="flex flex-col gap-16 max-w-16xl shrink">
<div className="title font-bold text-6xl font-title mb-16 dsm:mb-10">Welcome</div>
<div className="">
<div className="jumbotron jumbotron-fluid bg-transparent">
<div className="container secondary-color bg-stone-950 prose prose-invert marker:text-stone-50 p-16 dsm:py-10 dsm:px-4 rounded-xl">
<HomeMD />
</div>
</div>
</div>
</div>
</div>
</>
);
}
|