compass/compass/app/home/page.tsx
Andy Chan 596f648f31
Redesign landing page (#44)
* Redesign landing page

A bit empty right now, functionality non-existent

* Create search bar and filter pills

Not tied to any functionality at the moment, however

* Implement search result component

Searching not yet added, sample results added for testing

* Move ref in FilterPill to allow closing by clicking pill

Clicking on the pill would reopen the dropdown; it closes properly now
2024-11-20 15:54:54 -05:00

22 lines
687 B
TypeScript

"use client";
import Callout from "@/components/resource/Callout";
import Card from "@/components/resource/Card";
import { LandingSearchBar } from "@/components/resource/LandingSearchBar";
import { SearchResult } from "@/components/resource/SearchResult";
import Image from "next/image";
import Link from "next/link";
export default function Page() {
return (
<div className="min-h-screen flex flex-col items-center">
<div className="flex justify-center p-14">
<h1 className="font-bold text-4xl text-purple-800">
Good evening!
</h1>
</div>
<LandingSearchBar />
</div>
);
}