-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
58 additions
and
140 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 was deleted.
Oops, something went wrong.
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
69 changes: 0 additions & 69 deletions
69
src/components/EventsPage/Carousel/SliderCarousel/PreviewCarousel.jsx
This file was deleted.
Oops, something went wrong.
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
25 changes: 14 additions & 11 deletions
25
src/components/EventsSection/eventCardComponents/Card.jsx
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 |
---|---|---|
@@ -1,20 +1,23 @@ | ||
import Image from 'next/image'; | ||
import Link from 'next/link'; | ||
|
||
export const EventCard = ({ label, isTranslatedUp }) => { | ||
console.log(label); | ||
return ( | ||
<> | ||
<div | ||
style={{ | ||
background: 'linear-gradient(180deg, #002A2A 0%, #17001D 100%)', | ||
boxShadow: | ||
'0px 10px 50px rgba(255, 255, 255, 0.3), 0px 5px 15px rgba(255, 255, 255, 0.6)', | ||
position: 'relative', | ||
}} | ||
className=' w-[270px] xxsm:w-[310px] xsm:w-[347px] h-[416px] flex justify-center items-center text-[24px] font-spaceX leading-[37px] break-words text-center rounded-3xl' | ||
> | ||
<Image src={label} alt='alt' fill style={{ objectFit: 'fill', borderRadius: '16px' }} /> | ||
</div> | ||
<Link href={'/events'}> | ||
<div | ||
style={{ | ||
background: 'linear-gradient(180deg, #002A2A 0%, #17001D 100%)', | ||
boxShadow: | ||
'0px 10px 50px rgba(255, 255, 255, 0.3), 0px 5px 15px rgba(255, 255, 255, 0.6)', | ||
position: 'relative', | ||
}} | ||
className=' w-[270px] xxsm:w-[310px] xsm:w-[347px] h-[416px] flex justify-center items-center text-[24px] font-spaceX leading-[37px] break-words text-center rounded-3xl' | ||
> | ||
<Image src={label} alt='alt' fill style={{ objectFit: 'fill', borderRadius: '16px' }} /> | ||
</div> | ||
</Link> | ||
</> | ||
); | ||
}; |
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 |
---|---|---|
@@ -1,10 +1,13 @@ | ||
import { RegisterButton } from '@/components/Marginals/navbar/navbar.styles'; | ||
import { PrimaryButton } from '@/components/shared/Typography/Buttons'; | ||
import Link from 'next/link'; | ||
|
||
export const Button = () => { | ||
return ( | ||
<> | ||
<PrimaryButton>Explore More</PrimaryButton> | ||
<Link href='/events'> | ||
<PrimaryButton>Explore More</PrimaryButton> | ||
</Link> | ||
</> | ||
); | ||
}; |
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,15 @@ | ||
export const BannerData = (Prizes, Location, Time, Date) => [ | ||
{ | ||
Title: Location, | ||
Url: 'https://res.cloudinary.com/dfe8sdlkc/image/upload/v1729309788/352521_location_on_icon_u8d6am.png', | ||
}, | ||
{ | ||
Title: Date, | ||
title2: Time, | ||
Url: 'https://res.cloudinary.com/dfe8sdlkc/image/upload/v1729311717/8981284_deadline_schedule_calendar_event_time_icon_sozwq1.png', | ||
}, | ||
{ | ||
Title: Prizes, | ||
Url: 'https://res.cloudinary.com/dhv234qct/image/upload/v1729337575/ywb8h5oubo7hlqrmtjxa.svg', | ||
}, | ||
]; |