Merging in the React Refactor #56
@ -8,8 +8,12 @@ export default function WebLayout() {
|
|||||||
<>
|
<>
|
||||||
<div className="bg-gray-100 min-h-screen">
|
<div className="bg-gray-100 min-h-screen">
|
||||||
<Navigation />
|
<Navigation />
|
||||||
|
<div className="w-full flex justify-center">
|
||||||
|
<div className="mx-2 md:mx-0 w-full md:w-1/2 md:pt-14 min-h-screen h-fit border-l border-r border-gray-300 bg-white">
|
||||||
<Outlet />
|
<Outlet />
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</>
|
</>
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|||||||
@ -1,7 +1,5 @@
|
|||||||
export default function Home() {
|
export default function Home() {
|
||||||
return (
|
return (
|
||||||
<>
|
<p>hello</p>
|
||||||
<p>Home</p>
|
|
||||||
</>
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,10 +1,8 @@
|
|||||||
import ROUTE_CONSTANTS from "../types/routes";
|
import ROUTE_CONSTANTS from "../types/routes";
|
||||||
|
|
||||||
export default function NotFound() {
|
export default function NotFound() {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="w-full h-screen flex justify-center">
|
<div className="w-full h-[85vh] flex justify-center">
|
||||||
<div className="mx-2 md:mx-0 w-full md:w-1/2 flex items-center justify-center h-full border-l border-r border-gray-300 bg-white">
|
|
||||||
<div className="flex flex-col items-center justify-center gap-y-4">
|
<div className="flex flex-col items-center justify-center gap-y-4">
|
||||||
<div className="flex flex-col items-center justify-center">
|
<div className="flex flex-col items-center justify-center">
|
||||||
<svg
|
<svg
|
||||||
@ -22,6 +20,5 @@ export default function NotFound() {
|
|||||||
<a className="underline text-sm md:text-base text-blue-700" href={ROUTE_CONSTANTS.Home}>Back Home</a>
|
<a className="underline text-sm md:text-base text-blue-700" href={ROUTE_CONSTANTS.Home}>Back Home</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user