2024-01-20 07:34:30 +03:00
|
|
|
"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";
|
2024-01-20 23:04:03 +03:00
|
|
|
import { useSupabase } from "@/lib/context/SupabaseProvider";
|
|
|
|
import { redirectToLogin } from "@/lib/router/redirectToLogin";
|
2024-01-20 07:34:30 +03:00
|
|
|
|
|
|
|
import styles from "./page.module.scss";
|
|
|
|
|
|
|
|
const Search = (): JSX.Element => {
|
2024-01-23 04:37:45 +03:00
|
|
|
const pathname = usePathname();
|
|
|
|
const { session } = useSupabase();
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (session === null) {
|
|
|
|
redirectToLogin();
|
|
|
|
}
|
2024-01-31 00:34:32 +03:00
|
|
|
}, [pathname, session]);
|
2024-01-23 04:37:45 +03:00
|
|
|
|
|
|
|
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>
|
|
|
|
);
|
2024-01-20 07:34:30 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
export default Search;
|