Skip to content

Commit

Permalink
🌯 Wrapped burrito (#2389)
Browse files Browse the repository at this point in the history
Co-authored-by: Johanne Blikberg Herheim <[email protected]>
Co-authored-by: Ole Magnus <[email protected]>
  • Loading branch information
3 people authored Jan 15, 2025
1 parent fcd7b63 commit 0886d88
Show file tree
Hide file tree
Showing 39 changed files with 2,091 additions and 208 deletions.
Binary file added apps/web/public/images/how-to-allow-autoplay.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/web/public/sounds/angry-boat.mp3
Binary file not shown.
Binary file added apps/web/public/sounds/beer.mp3
Binary file not shown.
Binary file added apps/web/public/sounds/chimes.mp3
Binary file not shown.
Binary file added apps/web/public/sounds/death.wav
Binary file not shown.
Binary file added apps/web/public/sounds/drumroll.wav
Binary file not shown.
Binary file added apps/web/public/sounds/fein.mp3
Binary file not shown.
Binary file added apps/web/public/sounds/get-out.mp3
Binary file not shown.
Binary file added apps/web/public/sounds/hell-nah.mp3
Binary file not shown.
Binary file added apps/web/public/sounds/meow.mp3
Binary file not shown.
Binary file added apps/web/public/sounds/record-scratch.wav
Binary file not shown.
Binary file added apps/web/public/sounds/subway-surfers-theme.mp3
Binary file not shown.
Binary file added apps/web/public/sounds/swoosh.flac
Binary file not shown.
Binary file added apps/web/public/sounds/swoosh.mp3
Binary file not shown.
Binary file added apps/web/public/sounds/vine-boom.mp3
Binary file not shown.
Binary file added apps/web/public/sounds/waiting.mp3
Binary file not shown.
72 changes: 40 additions & 32 deletions apps/web/src/app/(default)/hjem/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { WrappedBanner } from "@/app/(wrapped)/wrapped/components/Banner";
import { Container } from "@/components/container";
import { ensureUser } from "@/lib/ensure";
import { ComingHappenings } from "./_components/coming-bedpres";
Expand All @@ -11,40 +12,47 @@ export default async function Home() {
await ensureUser();

return (
<div className="space-y-8 py-24">
<Container layout="larger">
<FPCalendar />
</Container>
<>
<WrappedBanner />

<Container
layout="larger"
className="flex space-y-8 md:grid md:grid-cols-3 md:grid-rows-2 md:gap-8 md:space-y-0"
>
<ComingHappenings
title="Arrangementer"
href="/for-studenter/arrangementer?type=event"
types={["external", "event"]}
n={11}
className="col-span-1 row-span-2"
/>
<ComingHappenings
title="Bedriftspresentasjoner"
href="/for-studenter/arrangementer?type=bedpres"
types={["bedpres"]}
n={3}
className="col-span-2 row-span-1"
/>
<Posts className="col-span-2 row-span-1" />
</Container>
<div className="space-y-8 py-24">
<Container layout="larger">
<FPCalendar />
</Container>

<Container layout="larger">
<JobAds />
</Container>
<Container
layout="larger"
className="flex space-y-8 md:grid md:grid-cols-3 md:grid-rows-2 md:gap-8 md:space-y-0"
>
<ComingHappenings
title="Arrangementer"
href="/for-studenter/arrangementer?type=event"
types={["external", "event"]}
n={11}
className="col-span-1 row-span-2"
/>
<ComingHappenings
title="Bedriftspresentasjoner"
href="/for-studenter/arrangementer?type=bedpres"
types={["bedpres"]}
n={3}
className="col-span-2 row-span-1"
/>
<Posts className="col-span-2 row-span-1" />
</Container>

<Container layout="larger" className="space-y-8 md:grid md:grid-cols-3 md:gap-8 md:space-y-0">
<FilmklubbMovies className="col-span-1" />
<HyggkomList className="col-span-2" />
</Container>
</div>
<Container layout="larger">
<JobAds />
</Container>

<Container
layout="larger"
className="space-y-8 md:grid md:grid-cols-3 md:gap-8 md:space-y-0"
>
<FilmklubbMovies className="col-span-1" />
<HyggkomList className="col-span-2" />
</Container>
</div>
</>
);
}
Loading

0 comments on commit 0886d88

Please sign in to comment.