Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions client/src/app/x/about-slide.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import { cn } from "@/lib/utils"

export function AboutSlide({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): React.ReactNode {
return (
<article className={cn("absolute size-full flex items-center justify-center", className)} {...props}>
<div className="max-w-160 mx-16 flex flex-col space-y-1.5 items-center justify-center">
<article className={cn("absolute size-full overflow-y-auto flex justify-center", className)} {...props}>
<div className="max-w-[70rem] w-full flex flex-col items-center space-y-1.5 my-8 mx-8">
<h1 className={cn(electrolize.className, "text-5xl pb-5")}>DurHack X</h1>
<h2 className={cn(spaceGrotesk.className, "text-3xl")}>600 Attendees</h2>
<h2 className={cn(spaceGrotesk.className, "text-3xl")}>150 Projects</h2>
Expand Down Expand Up @@ -40,6 +40,7 @@ export function AboutSlide({ className, ...props }: React.HTMLAttributes<HTMLDiv
<strong>Community Outreach:</strong> support pioneering students, and invest in the community with events
and workshops.
</li>
<div className="pb-8"></div>
</ul>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions client/src/app/x/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ export default function DurHackXPage() {
<PastSponsorsSlide className="size-full" />
</CarouselItem>
</CarouselContent>
<CarouselPrevious className="left-4" />
<CarouselNext className="right-4" />
<CarouselPrevious className="left-0" />
<CarouselNext className="right-0" />
</Carousel>
</main>
)
Expand Down