feat(env variables): accessible project variabes

This commit is contained in:
2022-03-16 18:31:33 +01:00
parent fec19d4976
commit f2f8f9cf76
2 changed files with 10 additions and 4 deletions

View File

@ -1,7 +1,13 @@
import type { NextPage } from "next";
import Head from "../components/Head";
const Home: NextPage = () => {
return <></>;
return (
<>
<Head />
</>
);
};
export default Home;