Add SubHomePage component and minor styling updates
Introduced the SubHomePage component to enhance modularity of the home page. Adjusted styling to include margins and a dark mode class for the body element.
This commit is contained in:
14
apps/frontend/src/components/sub-pages/sub-home-page.tsx
Normal file
14
apps/frontend/src/components/sub-pages/sub-home-page.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import { useState } from 'react';
|
||||
|
||||
|
||||
export interface SubHomePageProps {
|
||||
|
||||
}
|
||||
|
||||
export function SubHomePage(props: SubHomePageProps) {
|
||||
const [isLoaded, setIsLoaded] = useState<boolean>(false);
|
||||
|
||||
return (<section className={"w-full h-full rounded bg-card"}>
|
||||
|
||||
</section>)
|
||||
}
|
||||
Reference in New Issue
Block a user