From 18404d5fc2d39c2cb1796580817b13433ad5e758 Mon Sep 17 00:00:00 2001 From: Jeff Date: Wed, 17 Apr 2024 21:28:45 -0400 Subject: feat: Implemented basic grid layout system with working side bar --- src/layouts/GridLayout.js | 72 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 src/layouts/GridLayout.js (limited to 'src/layouts/GridLayout.js') diff --git a/src/layouts/GridLayout.js b/src/layouts/GridLayout.js new file mode 100644 index 0000000..a96b351 --- /dev/null +++ b/src/layouts/GridLayout.js @@ -0,0 +1,72 @@ +import React from "react"; +import { + HomeIcon, + EnvelopeIcon, + UserIcon, + BuildingStorefrontIcon, + BriefcaseIcon, +} from "@heroicons/react/24/outline" + +const GridLayout = ({ children }) => { + return ( +
+ + {/*Left column - sticky */} +
+ +
+ + {/*Middle column */} +
01 +
01 asdfasdf
+
+ + {/*Right column */} +
01
+ {children} +
+ ); +} + +export default GridLayout; \ No newline at end of file -- cgit v1.2.3-70-g09d2