diff --git a/apps/frontend/src/app/layout.tsx b/apps/frontend/src/app/layout.tsx
index 20a7251..f266edd 100644
--- a/apps/frontend/src/app/layout.tsx
+++ b/apps/frontend/src/app/layout.tsx
@@ -15,7 +15,7 @@ export default function RootLayout({
}) {
return (
-
+
{children}
diff --git a/apps/frontend/src/app/page.tsx b/apps/frontend/src/app/page.tsx
index 7ab8470..14015b8 100644
--- a/apps/frontend/src/app/page.tsx
+++ b/apps/frontend/src/app/page.tsx
@@ -8,6 +8,9 @@ import {
ResizablePanel,
ResizablePanelGroup
} from 'apps/frontend/src/components/ui/resizable';
+import {
+ SubHomePage
+} from 'apps/frontend/src/components/sub-pages/sub-home-page';
export enum ESubPage {
Home,
@@ -32,7 +35,7 @@ export default function HomePage() {
+ className={"w-full flex justify-center items-center m-3"}>
@@ -73,7 +76,7 @@ export interface ISubPageProps {
function SubPage(props: ISubPageProps) {
switch (props.currentSubPage) {
case ESubPage.Home:
- return (<>Home>)
+ return ()
case ESubPage.Documentation:
return (<>Doc>)
default:
diff --git a/apps/frontend/src/components/sub-pages/sub-home-page.tsx b/apps/frontend/src/components/sub-pages/sub-home-page.tsx
new file mode 100644
index 0000000..a989a96
--- /dev/null
+++ b/apps/frontend/src/components/sub-pages/sub-home-page.tsx
@@ -0,0 +1,14 @@
+import { useState } from 'react';
+
+
+export interface SubHomePageProps {
+
+}
+
+export function SubHomePage(props: SubHomePageProps) {
+ const [isLoaded, setIsLoaded] = useState(false);
+
+ return ()
+}
\ No newline at end of file