This commit is contained in:
2026-03-04 18:00:26 +01:00
parent 86cfe54f6e
commit c8c4d1e97d
17 changed files with 604 additions and 210 deletions
+2 -8
View File
@@ -1,13 +1,7 @@
import "@/styles/globals.css";
import "@radix-ui/themes/styles.css";
import "@/src/styles/globals.css";
import type { AppProps } from "next/app";
import { Theme } from "@radix-ui/themes";
export default function App({ Component, pageProps }: AppProps) {
return (
<Theme>
<Component {...pageProps} />
</Theme>
);
return <Component {...pageProps} />;
}
+2 -2
View File
@@ -1,5 +1,5 @@
import Main from "@/components/pages/auth/login";
import Layout from "@/layouts/login";
import Main from "@/src/components/pages/auth/login";
import Layout from "@/src/layouts/login";
export default function LoginPage() {
return (
+2 -3
View File
@@ -1,6 +1,5 @@
import Main from "@/components/pages/home";
import Layout from "@/layouts/login";
import { Heading } from "@radix-ui/themes";
import Main from "@/src/components/pages/home";
import Layout from "@/src/layouts/login";
export default function Home() {
return (