+
)
}
\ No newline at end of file
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/layout.tsx b/compass/app/layout.tsx
index 2509089..58c13ff 100644
--- a/compass/app/layout.tsx
+++ b/compass/app/layout.tsx
@@ -1,9 +1,5 @@
import '../styles/globals.css';
-import { Metadata } from 'next'
-
-export const metadata: Metadata = {
- title: 'Login',
-}
+
export default function RootLayout({
// Layouts must accept a children prop.
diff --git a/compass/app/resource/layout.tsx b/compass/app/resource/layout.tsx
new file mode 100644
index 0000000..bb7fddd
--- /dev/null
+++ b/compass/app/resource/layout.tsx
@@ -0,0 +1,37 @@
+"use client"
+
+import Sidebar from '@/components/resource/Sidebar';
+import React, { useState } from 'react';
+import { ChevronDoubleRightIcon } from '@heroicons/react/24/outline';
+
+export default function RootLayout({
+
+ children,
+}: {
+ children: React.ReactNode
+}) {
+ const [isSidebarOpen, setIsSidebarOpen] = useState(false);
+
+ return (
+
+ {/* button to open sidebar */}
+
+ {/* sidebar */}
+
+
+
+ {/* page ui */}
+
+ {children}
+
+
+ )
+}
\ No newline at end of file
diff --git a/compass/app/resource/page.tsx b/compass/app/resource/page.tsx
new file mode 100644
index 0000000..ca68cdb
--- /dev/null
+++ b/compass/app/resource/page.tsx
@@ -0,0 +1,39 @@
+"use client"
+import Callout from "@/components/resource/Callout";
+import Card from "@/components/resource/Card";
+import { LandingSearchBar } from "@/components/resource/LandingSearchBar";
+import { BookOpenIcon, BookmarkIcon, ClipboardIcon } from "@heroicons/react/24/solid";
+import Image from 'next/image';
+
+export default function Page() {
+ return (
+
+ {/* icon + title */}
+
+
+
+
Compass Center Advocate Landing Page
+
+
+ Welcome! Below you will find a list of resources for the Compass Center's trained advocates. These materials serve to virtually provide a collection of advocacy, resource, and hotline manuals and information.
+ If you are an advocate looking for the contact information of a particular Compass Center employee, please directly contact your staff back-up or the person in charge of your training.
+
+