summaryrefslogtreecommitdiffhomepage
path: root/src/components/Home.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Home.tsx')
-rw-r--r--src/components/Home.tsx14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/components/Home.tsx b/src/components/Home.tsx
index ec15c9b..83992f2 100644
--- a/src/components/Home.tsx
+++ b/src/components/Home.tsx
@@ -1,19 +1,17 @@
+import React from 'react';
+import { ReactComponent as HomeMD } from '../md/main.md';
export default function Home () {
return(
<>
<div>
<div className="flex flex-col gap-16 max-w-6xl shrink">
- <div className="title font-bold text-6xl font-title">Work In Progress</div>
+ <div className="title font-bold text-6xl font-title">Welcome</div>
<div className="">
<div className="jumbotron jumbotron-fluid bg-transparent">
- <div className="container secondary-color">
- <h1 className="text-2xl"> API at: { import.meta.env.VITE_API_TITLE } </h1>
- <p className="">
-Ea optio vitae culpa voluptatem consectetur. Ab quisquam sed ipsum. Perspiciatis minus odit quas qui consequuntur dicta reiciendis a. Nihil minima sed aliquam.
- </p>
- <hr className="my-4" />
- </div>
+ <div className="container secondary-color bg-stone-950 prose prose-invert marker:text-stone-50 p-8 rounded-xl">
+ <HomeMD />
+ </div>
</div>
</div>
</div>