diff --git a/frontend/src/components/Page.tsx b/frontend/src/components/Page.tsx
index 484e937e2e7879d056e2764df21247c27c3d3eda..9c576f3d0ca6ef32ad0ba117c0828b0db6c79d88 100644
--- a/frontend/src/components/Page.tsx
+++ b/frontend/src/components/Page.tsx
@@ -13,8 +13,9 @@ export const Page = (props: Props) => {
       <div id="sidebar" className="w-64 left-0 top-0 h-screen fixed z-1 overflow-auto">
         <Drawer />
       </div>
-      <div className="ml-64 p-8">
+      <div className="ml-64 p-8 w-full">
         <Title>{props.title}</Title>
+        <hr className="h-px w-full my-8 bg-gray-200 border-0 dark:bg-gray-700"></hr>
         {props.children}
       </div>
     </>