This commit is contained in:
Luis Alvarez
2020-09-30 11:44:38 -05:00
commit eb44455cde
67 changed files with 19268 additions and 0 deletions

13
pages/index.tsx Normal file
View File

@@ -0,0 +1,13 @@
import { Layout } from "@components/core";
export default function Home() {
return (
<Layout>
<div className="h-full grid grid-cols-1 h-full lg:grid-cols-3 lg:grid-rows-2">
<div className="lg:row-span-2 lg:col-span-2 bg-violet h-full"></div>
<div className="lg:row-span-1 lg:col-span-1 bg-black h-full"></div>
<div className="lg:row-span-1 lg:col-span-1 bg-pink"></div>
</div>
</Layout>
);
}