Skip to content

Commit

Permalink
fix(events): minor style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jsun969 committed Feb 11, 2024
1 parent 13a16e5 commit 4dd2458
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/app/(home)/page.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import Duck from '@/components/Duck';
import FancyRectangle from '@/components/FancyRectangle';
import ImageCarousel from '@/components/ImageCarousel';
import Title from '@/components/Title';
import { CAROUSEL_IMAGES } from '@/data/home';
import { SPONSOR_TYPES, getSponsors } from '@/data/sponsors';
import Image from 'next/image';
import { Fragment } from 'react';
import ImageCarousel from '../../components/ImageCarousel';

export default function HomePage() {
return (
Expand Down
4 changes: 2 additions & 2 deletions src/app/events/Events.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ function EventCard({ event, index }: { event: Event; index: number }) {
/>
<div className="grow space-y-2 md:space-y-4">
<div className="flex gap-6 font-bold">
<div className="grow md:space-y-2">
<h4 className="text-2xl md:border-b-[3px] md:border-black md:pb-1 md:text-3xl">
<div className="grow space-y-2">
<h4 className="text-2xl md:border-b-[3px] md:border-black md:pb-1 md:text-3xl">
{event.title}
</h4>
<div className="flex gap-2">
Expand Down
2 changes: 1 addition & 1 deletion src/app/events/Info.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default function Info({ className }: { className?: string }) {
the year.
</p>
<p className="hidden md:block">
For futher information, take a look at some of the events below!
For further information, take a look at some of the events below!
</p>
</div>
<FancyRectangle colour="white" offset="16" filled={true} rounded>
Expand Down

0 comments on commit 4dd2458

Please sign in to comment.