diff --git a/compass/app/auth/forgot_password/page.tsx b/compass/app/auth/forgot_password/page.tsx index 555f0cd..c8493b0 100644 --- a/compass/app/auth/forgot_password/page.tsx +++ b/compass/app/auth/forgot_password/page.tsx @@ -1,11 +1,10 @@ // pages/forgot-password.tsx "use client"; -import React, { useState, useEffect } from 'react'; +import React, { useState } from 'react'; import Input from '@/components/Input'; import Button from '@/components/Button'; import InlineLink from '@/components/InlineLink'; -import Paper from '@/components/auth/Paper'; import ErrorBanner from '@/components/auth/ErrorBanner'; diff --git a/compass/app/auth/login/page.tsx b/compass/app/auth/login/page.tsx index 5055714..a420d32 100644 --- a/compass/app/auth/login/page.tsx +++ b/compass/app/auth/login/page.tsx @@ -4,7 +4,6 @@ import Button from '@/components/Button'; import Input from '@/components/Input' import InlineLink from '@/components/InlineLink'; -import Paper from '@/components/auth/Paper'; import Image from 'next/image'; import { useState } from "react"; import PasswordInput from '@/components/auth/PasswordInput'; diff --git a/compass/app/auth/new_password/page.tsx b/compass/app/auth/new_password/page.tsx index 3fb3e83..1d9ca52 100644 --- a/compass/app/auth/new_password/page.tsx +++ b/compass/app/auth/new_password/page.tsx @@ -2,8 +2,6 @@ "use client"; import { useState, useEffect } from 'react'; import Button from '@/components/Button'; - -import Paper from '@/components/auth/Paper'; import PasswordInput from '@/components/auth/PasswordInput'; import ErrorBanner from '@/components/auth/ErrorBanner'; diff --git a/compass/app/resource/layout.tsx b/compass/app/resource/layout.tsx index c34eb87..db968f1 100644 --- a/compass/app/resource/layout.tsx +++ b/compass/app/resource/layout.tsx @@ -2,6 +2,7 @@ import Sidebar from '@/components/resource/Sidebar'; import React, { useState } from 'react'; +import {ChevronDoubleRightIcon} from '@heroicons/react/24/outline'; export default function RootLayout({ @@ -9,12 +10,22 @@ export default function RootLayout({ }: { children: React.ReactNode }) { - const [isSidebarOpen, setIsSidebarOpen] = useState(true); + const [isSidebarOpen, setIsSidebarOpen] = useState(false); return (