Skip to content

Commit

Permalink
Merge pull request #28 from Nounspace/SpaceLayout
Browse files Browse the repository at this point in the history
Added simple gallery fidget into main
  • Loading branch information
j-paterson authored May 3, 2024
2 parents 69d59d2 + 3bf196d commit ebcf1d7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/common/ui/templates/home/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React from "react";
import { Fragment, useState } from "react";
import Gallery from "@/fidgets/ui/gallery"
import { Dialog, Transition } from "@headlessui/react";
import { createClient } from "@/common/data/database/supabase/clients/component";
import {
Expand Down Expand Up @@ -349,7 +350,7 @@ const Home = ({ children }: { children: React.ReactNode }) => {
<main>
<div className="p-8 grid grid-cols-4 md:grid-cols-8 lg:grid-cols-12 grid-rows-4 md:grid-rows-6 lg:grid-rows-8 gap-4 lg:gap-8 h-screen max-h-screen">
<div className="p-4 border-2 row-span-8 col-span-6 max-h-full overflow-scroll rounded-md">{children}</div>
<div className="p-4 bg-slate-300 row-span-4 col-span-4 rounded-md flex items-center justify-center"></div>
<Gallery />
<div className="p-4 bg-slate-300 row-span-2 col-span-2 rounded-md flex items-center justify-center"></div>
<div className="p-4 bg-slate-300 row-span-2 col-span-2 rounded-md flex items-center justify-center"></div>
<div className="p-4 bg-slate-300 row-span-2 col-span-4 rounded-md flex items-center justify-center"></div>
Expand Down

0 comments on commit ebcf1d7

Please sign in to comment.