diff --git a/frontend/src/components/image/index.tsx b/frontend/src/components/image/index.tsx index 9d6a036..3a80e31 100644 --- a/frontend/src/components/image/index.tsx +++ b/frontend/src/components/image/index.tsx @@ -4,8 +4,11 @@ import { A } from "@solidjs/router"; export const ImageComponent: Component<{ ID: string }> = (props) => { return ( - - + + ); }; diff --git a/frontend/src/pages/front/Recent.tsx b/frontend/src/pages/front/Recent.tsx index 7b0cc6e..927349d 100644 --- a/frontend/src/pages/front/Recent.tsx +++ b/frontend/src/pages/front/Recent.tsx @@ -14,11 +14,13 @@ export const Recent: Component = () => { .slice(0, 10); return ( -
-

Recent

- - {(image) => } - +
+

Recent Screenshots

+
+ + {(image) => } + +
); }; diff --git a/frontend/src/pages/front/gallery.tsx b/frontend/src/pages/front/gallery.tsx index 52df56e..1800dd2 100644 --- a/frontend/src/pages/front/gallery.tsx +++ b/frontend/src/pages/front/gallery.tsx @@ -20,24 +20,27 @@ export const Categories: Component = () => { const { categories } = useSearchImageContext(); return ( -
- - {([category, group]) => ( - -

{category}s

-

{group.length}

-
- )} -
+
+

Entities

+
+ + {([category, group]) => ( + +

{category}s

+

{group.length}

+
+ )} +
+
); };