Compare commits
No commits in common. "92bb6bf3672f3dd09f01203dc9be07b6887d9bdd" and "4f40ef371c22f376de0d3e01da23ead2be7269a6" have entirely different histories.
92bb6bf367
...
4f40ef371c
@ -15,7 +15,7 @@ export default function RootLayout({
|
|||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<body className={"h-screen w-screen bg-card flex flex-col justify-between items-center police-ubuntu dark"}>
|
<body className={"h-screen w-screen bg-card flex flex-col justify-between items-center police-ubuntu"}>
|
||||||
<Header/>
|
<Header/>
|
||||||
{children}
|
{children}
|
||||||
<Footer/>
|
<Footer/>
|
||||||
|
@ -8,9 +8,6 @@ import {
|
|||||||
ResizablePanel,
|
ResizablePanel,
|
||||||
ResizablePanelGroup
|
ResizablePanelGroup
|
||||||
} from 'apps/frontend/src/components/ui/resizable';
|
} from 'apps/frontend/src/components/ui/resizable';
|
||||||
import {
|
|
||||||
SubHomePage
|
|
||||||
} from 'apps/frontend/src/components/sub-pages/sub-home-page';
|
|
||||||
|
|
||||||
export enum ESubPage {
|
export enum ESubPage {
|
||||||
Home,
|
Home,
|
||||||
@ -35,7 +32,7 @@ export default function HomePage() {
|
|||||||
</ResizablePanel>
|
</ResizablePanel>
|
||||||
<ResizableHandle withHandle />
|
<ResizableHandle withHandle />
|
||||||
<ResizablePanel
|
<ResizablePanel
|
||||||
className={"w-full flex justify-center items-center m-3"}>
|
className={"w-full flex justify-center items-center"}>
|
||||||
<SubPage currentSubPage={currentSubPage}/>
|
<SubPage currentSubPage={currentSubPage}/>
|
||||||
</ResizablePanel>
|
</ResizablePanel>
|
||||||
</ResizablePanelGroup>
|
</ResizablePanelGroup>
|
||||||
@ -76,7 +73,7 @@ export interface ISubPageProps {
|
|||||||
function SubPage(props: ISubPageProps) {
|
function SubPage(props: ISubPageProps) {
|
||||||
switch (props.currentSubPage) {
|
switch (props.currentSubPage) {
|
||||||
case ESubPage.Home:
|
case ESubPage.Home:
|
||||||
return (<SubHomePage/>)
|
return (<>Home</>)
|
||||||
case ESubPage.Documentation:
|
case ESubPage.Documentation:
|
||||||
return (<>Doc</>)
|
return (<>Doc</>)
|
||||||
default:
|
default:
|
||||||
|
@ -1,14 +0,0 @@
|
|||||||
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>)
|
|
||||||
}
|
|
32
package.json
32
package.json
@ -12,11 +12,11 @@
|
|||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fontsource/ubuntu": "^5.1.0",
|
"@fontsource/ubuntu": "^5.1.0",
|
||||||
"@nestjs/common": "^10.4.5",
|
"@nestjs/common": "^10.4.4",
|
||||||
"@nestjs/config": "^3.2.3",
|
"@nestjs/config": "^3.2.3",
|
||||||
"@nestjs/core": "^10.4.5",
|
"@nestjs/core": "^10.4.4",
|
||||||
"@nestjs/mapped-types": "*",
|
"@nestjs/mapped-types": "*",
|
||||||
"@nestjs/platform-express": "^10.4.5",
|
"@nestjs/platform-express": "^10.4.4",
|
||||||
"@nestjs/swagger": "^7.4.2",
|
"@nestjs/swagger": "^7.4.2",
|
||||||
"@nestjs/throttler": "^6.2.1",
|
"@nestjs/throttler": "^6.2.1",
|
||||||
"@radix-ui/react-accordion": "^1.2.1",
|
"@radix-ui/react-accordion": "^1.2.1",
|
||||||
@ -56,39 +56,39 @@
|
|||||||
"drizzle-orm": "^0.33.0",
|
"drizzle-orm": "^0.33.0",
|
||||||
"drizzle-zod": "^0.5.1",
|
"drizzle-zod": "^0.5.1",
|
||||||
"embla-carousel-react": "^8.3.0",
|
"embla-carousel-react": "^8.3.0",
|
||||||
"express": "^4.21.1",
|
"express": "^4.21.0",
|
||||||
"file-type": "^19.6.0",
|
"file-type": "^19.5.0",
|
||||||
"helmet": "^7.2.0",
|
"helmet": "^7.2.0",
|
||||||
"input-otp": "^1.2.4",
|
"input-otp": "^1.2.4",
|
||||||
"jose": "^5.9.4",
|
"jose": "^5.9.3",
|
||||||
"lucide-react": "^0.429.0",
|
"lucide-react": "^0.429.0",
|
||||||
"magic-bytes.js": "^1.10.0",
|
"magic-bytes.js": "^1.10.0",
|
||||||
"next": "14.2.15",
|
"next": "14.2.3",
|
||||||
"next-themes": "^0.3.0",
|
"next-themes": "^0.3.0",
|
||||||
"postgres": "^3.4.4",
|
"postgres": "^3.4.4",
|
||||||
"react": "18.3.1",
|
"react": "18.3.1",
|
||||||
"react-day-picker": "^9.1.4",
|
"react-day-picker": "^9.1.3",
|
||||||
"react-dom": "18.3.1",
|
"react-dom": "18.3.1",
|
||||||
"react-resizable-panels": "^2.1.4",
|
"react-resizable-panels": "^2.1.4",
|
||||||
"recharts": "^2.13.0",
|
"recharts": "^2.12.7",
|
||||||
"reflect-metadata": "^0.1.14",
|
"reflect-metadata": "^0.1.14",
|
||||||
"rxjs": "^7.8.1",
|
"rxjs": "^7.8.1",
|
||||||
"sonner": "^1.5.0",
|
"sonner": "^1.5.0",
|
||||||
"tailwind-merge": "^2.5.4",
|
"tailwind-merge": "^2.5.3",
|
||||||
"tailwindcss-animate": "^1.0.7",
|
"tailwindcss-animate": "^1.0.7",
|
||||||
"ts-mockito": "^2.6.1",
|
"ts-mockito": "^2.6.1",
|
||||||
"tslib": "^2.8.0"
|
"tslib": "^2.7.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@biomejs/biome": "^1.9.3",
|
"@biomejs/biome": "^1.9.3",
|
||||||
"@nestjs/schematics": "^10.2.0",
|
"@nestjs/schematics": "^10.1.4",
|
||||||
"@nestjs/testing": "^10.4.5",
|
"@nestjs/testing": "^10.4.4",
|
||||||
"@nx/cypress": "19.6.1",
|
"@nx/cypress": "19.6.1",
|
||||||
"@nx/eslint": "19.6.1",
|
"@nx/eslint": "19.6.1",
|
||||||
"@nx/eslint-plugin": "19.6.1",
|
"@nx/eslint-plugin": "19.6.1",
|
||||||
"@nx/jest": "19.6.1",
|
"@nx/jest": "19.6.1",
|
||||||
"@nx/js": "19.6.1",
|
"@nx/js": "19.6.1",
|
||||||
"@nx/nest": "^19.8.5",
|
"@nx/nest": "^19.8.4",
|
||||||
"@nx/next": "19.6.1",
|
"@nx/next": "19.6.1",
|
||||||
"@nx/node": "19.6.1",
|
"@nx/node": "19.6.1",
|
||||||
"@nx/react": "19.6.1",
|
"@nx/react": "19.6.1",
|
||||||
@ -97,7 +97,7 @@
|
|||||||
"@nx/workspace": "19.6.1",
|
"@nx/workspace": "19.6.1",
|
||||||
"@swc-node/register": "~1.10.9",
|
"@swc-node/register": "~1.10.9",
|
||||||
"@swc/cli": "~0.3.14",
|
"@swc/cli": "~0.3.14",
|
||||||
"@swc/core": "~1.7.36",
|
"@swc/core": "~1.7.26",
|
||||||
"@swc/helpers": "~0.5.13",
|
"@swc/helpers": "~0.5.13",
|
||||||
"@types/jest": "^29.5.13",
|
"@types/jest": "^29.5.13",
|
||||||
"@types/node": "18.16.9",
|
"@types/node": "18.16.9",
|
||||||
@ -124,7 +124,7 @@
|
|||||||
"tailwindcss": "3.4.3",
|
"tailwindcss": "3.4.3",
|
||||||
"ts-jest": "^29.2.5",
|
"ts-jest": "^29.2.5",
|
||||||
"ts-node": "10.9.1",
|
"ts-node": "10.9.1",
|
||||||
"typescript": "~5.6.3",
|
"typescript": "~5.6.2",
|
||||||
"webpack-cli": "^5.1.4"
|
"webpack-cli": "^5.1.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
1478
pnpm-lock.yaml
generated
1478
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user