mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-15 17:43:03 +03:00
1d7bc8a5bc
* remove duplicate import * 🚧 add new linter configuration * 🧑💻 add and run prettier * 🐛 add babel parser for linter * 🧑💻 add lint-fix command * 🚨 use lint-fix * 🚨 remove 'FC' as a type. Use const and JSX.Element * 🚨 enforce arrow function rule from linter * 🔥 delete unused file * 🚨 adding /* eslint-disable */ in failing files * 💩 add ts-expect-error to Victory components
20 lines
340 B
TypeScript
20 lines
340 B
TypeScript
import { redirect } from "next/navigation";
|
|
|
|
import Features from "./Features";
|
|
import Hero from "./Hero";
|
|
|
|
const HomePage = (): JSX.Element => {
|
|
if (process.env.NEXT_PUBLIC_ENV === "local") {
|
|
redirect("/upload");
|
|
}
|
|
|
|
return (
|
|
<main className="">
|
|
<Hero />
|
|
<Features />
|
|
</main>
|
|
);
|
|
};
|
|
|
|
export default HomePage;
|