wip
This commit is contained in:
@@ -250,5 +250,5 @@ export default function Pulse({ ...props }) {
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
);
|
||||
)
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
import { useNavigation } from "react-router";
|
||||
import { Link } from "react-router";
|
||||
import { Outlet } from "react-router";
|
||||
import { useNavigation } from 'react-router'
|
||||
import { Link } from 'react-router'
|
||||
import { Outlet } from 'react-router'
|
||||
|
||||
export default function Layout() {
|
||||
const navigation = useNavigation();
|
||||
const isNavigating = Boolean(navigation.location);
|
||||
const navigation = useNavigation()
|
||||
const isNavigating = Boolean(navigation.location)
|
||||
|
||||
return (
|
||||
<>
|
||||
@@ -18,5 +18,5 @@ export default function Layout() {
|
||||
|
||||
{isNavigating ? <>Loading...</> : <Outlet />}
|
||||
</>
|
||||
);
|
||||
)
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
import { Outlet } from "react-router";
|
||||
import { Regular as Logo } from "~/components/logo";
|
||||
import Pulse from "./_pulse";
|
||||
import WomanImg from "./woman.png";
|
||||
import { Outlet } from 'react-router'
|
||||
import { Regular as Logo } from '~/components/logo'
|
||||
import Pulse from './_pulse'
|
||||
import WomanImg from './woman.png'
|
||||
|
||||
export default function Auth() {
|
||||
const year = new Date().getFullYear();
|
||||
const year = new Date().getFullYear()
|
||||
|
||||
return (
|
||||
<>
|
||||
@@ -47,5 +47,5 @@ export default function Auth() {
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user