mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-17 11:21:35 +03:00
41 lines
1.1 KiB
TypeScript
41 lines
1.1 KiB
TypeScript
"use client";
|
|
import { usePathname } from "next/navigation";
|
|
import { useEffect } from "react";
|
|
|
|
import { QuivrLogo } from "@/lib/assets/QuivrLogo";
|
|
import { SearchBar } from "@/lib/components/ui/SearchBar/SearchBar";
|
|
import { useSupabase } from "@/lib/context/SupabaseProvider";
|
|
import { redirectToLogin } from "@/lib/router/redirectToLogin";
|
|
|
|
import styles from "./page.module.scss";
|
|
|
|
const Search = (): JSX.Element => {
|
|
const pathname = usePathname();
|
|
const { session } = useSupabase();
|
|
|
|
useEffect(() => {
|
|
if (session === null) {
|
|
redirectToLogin();
|
|
}
|
|
}, [pathname, session]);
|
|
|
|
return (
|
|
<div className={styles.search_page_container}>
|
|
<div className={styles.main_container}>
|
|
<div className={styles.quivr_logo_wrapper}>
|
|
<QuivrLogo size={80} color="black" />
|
|
<div className={styles.quivr_text}>
|
|
<span>Talk to </span>
|
|
<span className={styles.quivr_text_primary}>Quivr</span>
|
|
</div>
|
|
</div>
|
|
<div className={styles.search_bar_wrapper}>
|
|
<SearchBar />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Search;
|