-
- Dashboard
-
-
+
+
+ Dashboard
+
+
+
-
-
-
Units in
-
-
+
+
+
+ {Object.keys(categories).map((category) => (
+
+ classNames(
+ 'w-full rounded-lg py-2.5 text-sm font-medium leading-5 text-blue-700',
+ 'ring-white ring-opacity-60 ring-offset-2 ring-offset-blue-400 focus:outline-none focus:ring-2',
+ selected
+ ? 'bg-white shadow'
+ : 'text-blue-100 hover:bg-white/[0.12] hover:text-white'
+ )
+ }
+ >
+ {category}
+
+ ))}
+
+
+ {Object.values(categories).map((posts, idx) => (
+
+
+ {posts.map((post) => (
+ -
+
+ {post.title}
+
+
+
+ - {post.date}
+ - ·
+ - {post.commentCount} comments
+ - ·
+ - {post.shareCount} shares
+
+
+
+
+ ))}
+
+
+ ))}
+
+
+
@@ -28,4 +322,226 @@ function Dashboard() {
)
}
+
+function EditInactiveIcon(props) {
+ return (
+
+ )
+}
+
+function EditActiveIcon(props) {
+ return (
+
+ )
+}
+
+function DuplicateInactiveIcon(props) {
+ return (
+
+ )
+}
+
+function DuplicateActiveIcon(props) {
+ return (
+
+ )
+}
+
+function ArchiveInactiveIcon(props) {
+ return (
+
+ )
+}
+
+function ArchiveActiveIcon(props) {
+ return (
+
+ )
+}
+
+function MoveInactiveIcon(props) {
+ return (
+
+ )
+}
+
+function MoveActiveIcon(props) {
+ return (
+
+ )
+}
+
+function DeleteInactiveIcon(props) {
+ return (
+
+ )
+}
+
+function DeleteActiveIcon(props) {
+ return (
+
+ )
+}
export default Dashboard