diff --git a/apps/website/src/module/dashboard/ui/page/pinned-task-section/index.ts b/apps/website/src/module/dashboard/ui/page/pinned-task-section/index.ts new file mode 100644 index 0000000..2003f66 --- /dev/null +++ b/apps/website/src/module/dashboard/ui/page/pinned-task-section/index.ts @@ -0,0 +1 @@ +export { PinnedTask } from './pinned-task-section.presenter'; diff --git a/apps/website/src/module/dashboard/ui/page/pinned-task-section/pinned-task-section.presenter.tsx b/apps/website/src/module/dashboard/ui/page/pinned-task-section/pinned-task-section.presenter.tsx new file mode 100644 index 0000000..112a6b8 --- /dev/null +++ b/apps/website/src/module/dashboard/ui/page/pinned-task-section/pinned-task-section.presenter.tsx @@ -0,0 +1,56 @@ +import { Image } from '@lockerai/core/component/image'; +import { type ComponentPropsWithoutRef } from 'react'; + +type PinnedTaskSectionProps = Omit, 'children' | 'className'>; +export const PinnedTask = ({ ...props }: PinnedTaskSectionProps) => { + return ( +
+
+

+ You are currently delivering +

+

+ You are in the process of delivering a lost item. Please go to the nearest the Locker and store the lost item. +

+
+ +
+
+ phone-image +
+
+

phone, iPhone 15, white, at station platform, around 5 o’clock

+
+
+ user-icon +
+
+
+

+ shio3616(you) +

+
+
+

Oct. 13, 2023 15:32 reported

+
+
+
+
+
+
+ ); +};