adding more with stale states

This commit is contained in:
Arjun Patel
2022-01-30 18:01:33 -08:00
parent bd759118b3
commit 5e208adc3f
5 changed files with 66 additions and 7 deletions
+16 -1
View File
@@ -1,8 +1,23 @@
import getDynamicMeLayout from "../../components/Layouts/DynamicMeLayout";
import React from "react";
import { FaRegClock } from "react-icons/fa";
export default function Later() {
return <div>All caught up.</div>;
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) {
+16 -1
View File
@@ -1,8 +1,23 @@
import getDynamicMeLayout from "../../components/Layouts/DynamicMeLayout";
import React from "react";
import { FaRocket } from "react-icons/fa";
export default function Priority() {
return <div>All caught up.</div>;
return (
<div className="mx-auto my-auto flex flex-col">
<img
src="/illustrations/undraw_team_collaboration_re_ow29.svg"
className="h-[15rem] mx-auto my-auto"
/>
<span></span>
<span className="text-slate-400 text-center mt-5">
One place for your most important
<br></br>people and items <FaRocket className="inline" />.<br></br>
<span className="text-red-600">Keep this clean at all costs.</span>
</span>
</div>
);
}
Priority.getLayout = function getLayout(page: React.ReactElement) {