-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: clusters carousel page * feat: animations for clusters carousel * fix: aboutPage * fix: clunster carousel bottom bar * fix: minor fix
- Loading branch information
1 parent
3e5bf2e
commit 8382caa
Showing
18 changed files
with
272 additions
and
63 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
.event { | ||
background: url('../../assets/images/EventBG.png'); | ||
background-size: cover; | ||
background-position: center; | ||
background-repeat: no-repeat; | ||
background-color: #070b12; | ||
} | ||
|
||
.Back{ | ||
cursor: pointer; | ||
transition: 0.2s; | ||
} | ||
|
||
.Back:active{ | ||
transform: scale(0.9); | ||
} | ||
|
||
.slide{ | ||
height: 60vh; | ||
margin-top: -1%; | ||
} | ||
|
||
@media screen and (max-width : 1024px){ | ||
.eventClusterName{ | ||
margin-top: 2%; | ||
} | ||
.slide{ | ||
margin-top: -2%; | ||
height: 75vh; | ||
} | ||
} |
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,24 @@ | ||
import { ClusterCarousel, NavBar } from '@/components'; | ||
import Back from '@/assets/images/Back.png'; | ||
import BackEnlarge from '@/assets/images/BackEnlarge.png'; | ||
import ImageChanger from '@/components/BackButton/back'; | ||
import styles from './eventcluster.module.css'; | ||
|
||
const events = () => { | ||
return ( | ||
<div className={`min-h-screen w-full text-center lg:p-7 p-5 event + ${styles.event}`}> | ||
<NavBar /> | ||
<ImageChanger defaultImage={Back} hoverImage={BackEnlarge} /> | ||
<p | ||
className={`${styles.eventClusterName} font-ROG 2xl:text-6xl xl:text-5xl lg:text-4xl sm:text-3xl text-2xl mt-12 transition-all`} | ||
> | ||
CLUSTER NAME | ||
</p> | ||
<div className="flex w-full h-[60vh] justify-center items-center"> | ||
<ClusterCarousel /> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default events; |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Oops, something went wrong.