diff --git a/frontend/src/components/image/index.tsx b/frontend/src/components/image/index.tsx
index e7ccd7d..b426cfe 100644
--- a/frontend/src/components/image/index.tsx
+++ b/frontend/src/components/image/index.tsx
@@ -12,3 +12,14 @@ export const ImageComponent: Component<{ ID: string }> = (props) => {
);
};
+
+export const ImageComponentFullHeight: Component<{ ID: string }> = (props) => {
+ return (
+
+
+
+ );
+};
diff --git a/frontend/src/pages/image/index.tsx b/frontend/src/pages/image/index.tsx
index 7a8edfd..af435e5 100644
--- a/frontend/src/pages/image/index.tsx
+++ b/frontend/src/pages/image/index.tsx
@@ -1,4 +1,4 @@
-import { ImageComponent } from "@components/image";
+import { ImageComponentFullHeight } from "@components/image";
import { useSearchImageContext } from "@contexts/SearchImageContext";
import { useParams } from "@solidjs/router";
import { For, type Component } from "solid-js";
@@ -15,7 +15,7 @@ export const ImagePage: Component = () => {
return (
-
+
Description