Files
nirvana/packages/web/pages/s/later.tsx
T

26 lines
744 B
TypeScript

import getDynamicMeLayout from "../../components/Layouts/DynamicMeLayout";
import React from "react";
import { FaRegClock } from "react-icons/fa";
export default function Later() {
return (
<div className="mx-auto my-auto flex flex-col">
<img
src="/illustrations/undraw_season_change_f99v.svg"
className="h-[15rem] mx-auto my-auto"
/>
<span></span>
<span className="text-slate-400 text-center mt-5">
Focusing right now? <br></br> No worries, go through low-priority{" "}
<br></br>
conversations <FaRegClock className="inline" /> later.
</span>
</div>
);
}
Later.getLayout = function getLayout(page: React.ReactElement) {
return getDynamicMeLayout(page);
};