diff --git a/compass/app/home/page.tsx b/compass/app/home/page.tsx index 86be3ef..b50bbd6 100644 --- a/compass/app/home/page.tsx +++ b/compass/app/home/page.tsx @@ -2,60 +2,18 @@ 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"; import Link from "next/link"; export default function Page() { return ( -
- {/* icon + title */} -
-
- Compass Center logo. -

- 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. - - -
-
- {/* link to different pages */} -
- - } text="Resources" /> - - - } text="Services" /> - - - } text="Training Manuals" /> - -
- {/* search bar */} - +
+
+

+ Good evening! +

+
); } diff --git a/compass/components/resource/LandingSearchBar.tsx b/compass/components/resource/LandingSearchBar.tsx index afce772..fe90fc6 100644 --- a/compass/components/resource/LandingSearchBar.tsx +++ b/compass/components/resource/LandingSearchBar.tsx @@ -1,5 +1,6 @@ +import { FunnelIcon as FunnelIconOutline } from "@heroicons/react/24/outline"; import { - ChevronDownIcon, + FunnelIcon, MagnifyingGlassIcon, XMarkIcon, } from "@heroicons/react/24/solid"; @@ -21,39 +22,52 @@ export const LandingSearchBar: React.FC = () => { }; return ( -
+
{/* searchbar */} -
-
- -
- {/* input */} - {searchTerm && ( - + )} + {/* Filter button */} + - )} -
- - - - {showFilterBox && } -
{/* search results, for now since it's empty this is the default screen */} @@ -64,10 +78,10 @@ export const LandingSearchBar: React.FC = () => { width={250} height={250} /> -

- Need to find something? Use the links or the search bar - above to get your results. -

+

+ Need to find something? Use the search bar above to get your + results. +

);