25 lines
707 B
TypeScript
25 lines
707 B
TypeScript
import getDynamicMeLayout from "../../components/Layouts/DynamicMeLayout";
|
|
import React from "react";
|
|
import { FaLink } from "react-icons/fa";
|
|
|
|
export default function Drawer() {
|
|
return (
|
|
<div className="mx-auto my-auto flex flex-col">
|
|
<img
|
|
src="/illustrations/undraw_share_link_qtxe.svg"
|
|
className="h-[15rem] mx-auto my-auto"
|
|
/>
|
|
|
|
<span></span>
|
|
<span className="text-slate-400 text-center mt-5">
|
|
A place to <FaLink className="inline" /> bookmark that <br></br> drive
|
|
folder, GitHub repo, video, Jira ticket.
|
|
</span>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
Drawer.getLayout = function getLayout(page: React.ReactElement) {
|
|
return getDynamicMeLayout(page);
|
|
};
|