-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: started implementing feature calendar and such
- Loading branch information
1 parent
ad1c31f
commit e5cd3c8
Showing
8 changed files
with
116 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import Banner from "@/components/hero/for_studenten_banner"; | ||
import Hero2 from "@/components/hero/hero2"; | ||
import SmallTransissionPCSPC from "@/components/hero/transissions/smallTransissionPCSPC"; | ||
import TransissionIn from "@/components/hero/transissions/transissionIn"; | ||
|
||
export default function Layout({ | ||
children, | ||
}: Readonly<{ | ||
children: React.ReactNode; | ||
}>) { | ||
return ( | ||
<div className="text-white w-full"> | ||
<div className="flex flex-col justify-center items-center text-2xl font-bold gap-y-4 py-4 px-4"> | ||
<p>Booking</p> | ||
<p className="flex flex-col max-w-[512px] space-y-3 text-sm lg:text-l "> | ||
På Emil kan du som student booke en rekke ting til diverse | ||
anledninger. Vi har blant annet 2 Soundboxer til disposisjon, | ||
Emil-kontoret og nå en hytte som deles med Smørekoppen! Komiteer kan | ||
også booke ting til arrangementer eller liknende.{" "} | ||
</p> | ||
</div> | ||
<SmallTransissionPCSPC/> | ||
{children} | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters