diff options
Diffstat (limited to 'src/components/Home.tsx')
| -rw-r--r-- | src/components/Home.tsx | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/components/Home.tsx b/src/components/Home.tsx new file mode 100644 index 0000000..7430549 --- /dev/null +++ b/src/components/Home.tsx @@ -0,0 +1,25 @@ +//import { Link } from "react-router-dom"; + +//export default () => ( +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=""> + <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> + </div> + </div> + </div> + </> + ); +} |
