blob: 91e241a496ed1fa7a3e6b61e5bb71907f902ab24 (
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-32">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 rounded-xl">
<HomeMD />
</div>
</div>
</div>
</div>
</div>
</>
);
}
|