quivr/frontend/app/(home)/page.tsx
Zineb El Bachiri 1d7bc8a5bc
Devx/add linter rules (#331)
* 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
2023-06-15 11:52:46 +02:00

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;