diff --git a/app/(authenticated)/images/create/page.tsx b/app/(authenticated)/images/create/page.tsx
index 580b3a3..d53811b 100644
--- a/app/(authenticated)/images/create/page.tsx
+++ b/app/(authenticated)/images/create/page.tsx
@@ -2,7 +2,7 @@ import {Stack, Breadcrumbs, Link, Typography} from "@mui/material";
 import CardBackground from "@/components/layout/cardBackground";
 import ImageCreator from "@/components/images/imageCreator";
 
-export default function TagCreatePage() {
+export default function ImageCreatePage() {
 
     return (
         <Stack spacing={1} mx={2} my={3}>
diff --git a/app/(authenticated)/images/page.tsx b/app/(authenticated)/images/page.tsx
index 5e49df8..9c8d6c2 100644
--- a/app/(authenticated)/images/page.tsx
+++ b/app/(authenticated)/images/page.tsx
@@ -3,7 +3,7 @@ import CardBackground from "@/components/layout/cardBackground";
 import {imageFactory} from "@/src/models/ImageModel";
 import React from "react";
 
-export default async function TagsPage() {
+export default async function ImagesPage() {
     const images = await imageFactory().index()
 
     return (