-
Notifications
You must be signed in to change notification settings - Fork 5
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
81 changed files
with
13,915 additions
and
4,178 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,147 @@ | ||
.brochureBack { | ||
position: fixed; | ||
height: 100%; | ||
width: 100%; | ||
overflow: hidden; | ||
} | ||
|
||
.ham { | ||
position: fixed; | ||
top: 30px; | ||
left: 20px; | ||
z-index: 1000; | ||
@media (width>1920px) { | ||
transform: scale(1.3); | ||
left: 40px; | ||
top: 50px; | ||
} | ||
} | ||
|
||
.reg { | ||
position: relative; | ||
top: 80px; | ||
padding: 0 20px; | ||
z-index: 10; | ||
height: 100px; | ||
@media (width>1920px) { | ||
top: 10px; | ||
} | ||
} | ||
|
||
.pageWrapper { | ||
position: relative; | ||
top: -4rem; | ||
} | ||
|
||
@media (max-width: 4000px) and (min-width: 2200px) { | ||
.brochureBack { | ||
overflow-x: hidden; | ||
} | ||
|
||
.pageWrapper { | ||
padding-top: 5rem; | ||
overflow-x: hidden; | ||
|
||
.heading { | ||
gap: 1.8rem; | ||
transform: scale(1.5); | ||
} | ||
|
||
.backBtn { | ||
position: absolute; | ||
top: 1rem; | ||
left: 3rem; | ||
} | ||
} | ||
} | ||
|
||
@media (max-width: 3000px) and (min-width: 2200px) { | ||
.pageWrapper { | ||
.heading { | ||
gap: 1.5rem; | ||
transform: scale(1.3); | ||
} | ||
} | ||
} | ||
|
||
@media (max-width: 2200px) and (min-width: 1850px) { | ||
.pageWrapper { | ||
padding-top: 3rem; | ||
|
||
.heading { | ||
gap: 2rem; | ||
|
||
h2 { | ||
font-size: 72px; | ||
} | ||
} | ||
|
||
.backBtn { | ||
top: 1rem; | ||
} | ||
} | ||
} | ||
|
||
@media (max-width: 1850px) and (min-width: 1500px) { | ||
.pageWrapper { | ||
padding-top: 3rem; | ||
|
||
.heading { | ||
h2 { | ||
font-size: 65px; | ||
} | ||
} | ||
|
||
.backBtn { | ||
top: 1rem; | ||
} | ||
} | ||
} | ||
|
||
@media (max-width: 600px) { | ||
.pageWrapper { | ||
.heading { | ||
padding-top: 0rem; | ||
|
||
h2 { | ||
font-size: 40px; | ||
} | ||
|
||
svg { | ||
display: none; | ||
} | ||
} | ||
|
||
.backBtn { | ||
top: 0; | ||
left: 0; | ||
} | ||
|
||
.pdfContainer { | ||
margin-top: 2rem; | ||
} | ||
} | ||
} | ||
|
||
@media (max-width: 400px) { | ||
.pageWrapper { | ||
.heading { | ||
padding-top: 0rem; | ||
} | ||
|
||
.backBtn { | ||
left: 0rem; | ||
transform: translateX(-1rem); | ||
} | ||
} | ||
} | ||
|
||
@media (max-width: 350px) { | ||
.pageWrapper { | ||
.heading { | ||
h2 { | ||
font-size: 35px; | ||
} | ||
} | ||
} | ||
} |
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,5 @@ | ||
import Preloader from "@/components/Preloader/Preloader"; | ||
|
||
export default function LoadingPage() { | ||
return <Preloader />; | ||
} |
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,53 @@ | ||
"use client"; | ||
|
||
import React from "react"; | ||
import styles from "./about.module.scss"; | ||
|
||
import Grid from "@/components/Landing/Grid/Grid"; | ||
import Grunge from "@/components/Landing/Backdrop/Grunge"; | ||
import Glow from "@/components/Landing/Glow/Glow"; | ||
import SuitBackground from "@/components/Landing/Backdrop/Backdrop"; | ||
import BackButton from "@/components/Registration/BackButton/BackButton"; | ||
import Link from "next/link"; | ||
import PrePreloader from "@/components/PreloaderProMax/PreloaderProMax"; | ||
import AboutUsPage from "@/components/AboutUs/AboutUsPage"; | ||
import RegBtn from "@/components/Landing/Navbar/RegBtn/RegBtn"; | ||
import MobileSlotMachine from "@/components/AboutUs/Machine/Machine"; | ||
|
||
export default function About() { | ||
return ( | ||
<> | ||
<PrePreloader /> | ||
<div className={styles.brochureBack}> | ||
<Glow /> | ||
<Grunge /> | ||
<Grid /> | ||
<SuitBackground /> | ||
</div> | ||
<div className={styles.ham}> | ||
<Link href="/"> | ||
<BackButton /> | ||
</Link> | ||
</div> | ||
|
||
<div className={styles.reg}> | ||
<RegBtn /> | ||
</div> | ||
<div className={styles.pageWrapper}> | ||
{/* <div className={styles.header}> | ||
<div className={styles.backBtn}> | ||
<Link href="/"> | ||
<BackButton /> | ||
</Link> | ||
</div> | ||
<div className={styles.reg}> | ||
<RegBtn /> | ||
</div> | ||
</div> */} | ||
|
||
<AboutUsPage /> | ||
<MobileSlotMachine /> | ||
</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
File renamed without changes.
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.