Updates
This commit is contained in:
+2
-8
@@ -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} />;
|
||||
}
|
||||
|
||||
@@ -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
@@ -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 (
|
||||
|
||||
Reference in New Issue
Block a user