Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
… into prod
  • Loading branch information
chaitanya-rahul-jain committed Oct 16, 2024
2 parents 511694d + ab433d7 commit fc51ca3
Show file tree
Hide file tree
Showing 44 changed files with 2,904 additions and 2,082 deletions.
6 changes: 4 additions & 2 deletions app/about/about.module.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.brochureBack {
.aboutBack {
position: fixed;
height: 100vh;
width: 100%;
Expand Down Expand Up @@ -32,10 +32,12 @@
padding-top: 0 !important;
position: absolute;
top: -0rem;
height: 100vh;
overflow-y: hidden;
}

@media (max-width: 4000px) and (min-width: 2200px) {
.brochureBack {
.aboutBack {
overflow-x: hidden;
}

Expand Down
2 changes: 1 addition & 1 deletion app/about/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function About() {
return (
<>
<PrePreloader />
<div className={styles.brochureBack}>
<div className={styles.aboutBack}>
<Glow />
<Grunge />
<Grid />
Expand Down
7 changes: 3 additions & 4 deletions app/archive/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use client";

import React, { useState, useEffect } from "react";
import React, { useState, useEffect, Suspense } from "react";
import styles from "./archive.module.scss";

import Grid from "@/components/Landing/Grid/Grid";
Expand All @@ -10,7 +10,6 @@ import SuitBackground from "@/components/Landing/Backdrop/Backdrop";
import BackButton from "@/components/Registration/BackButton/BackButton";
import Image from "next/image";
import Link from "next/link";
import PrePreloader from "@/components/PreloaderProMax/PreloaderProMax";
import Carousel from "@/components/Archive/Carousel";

import one from "../../assets/Gallery/one.jpg";
Expand Down Expand Up @@ -148,7 +147,6 @@ export default function GalleryPage() {

return (
<>
<PrePreloader />
<div className={styles.galleryBack}>
<Glow />
<Grunge />
Expand Down Expand Up @@ -186,7 +184,7 @@ export default function GalleryPage() {
/>
</svg>

<h2>ARCHIVE</h2>
<h2>ARCHIVES</h2>

<svg
width="42"
Expand Down Expand Up @@ -331,6 +329,7 @@ export default function GalleryPage() {
<Image
key={index}
src={img}
placeholder="blur"
alt={`Image ${index + 1}`}
className={imageClasses[index]}
onClick={() => openCarousel(index)}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.brochureBack {
.contactBack {
position: fixed;
height: 100%;
width: 100%;
Expand All @@ -7,6 +7,7 @@

.ham {
position: fixed;
z-index: 100;
top: 30px;
left: 20px;
@media(width>1920px){
Expand All @@ -31,10 +32,10 @@
.contactPage {
position: fixed;
top: 0rem;
height: 100lvh;
height: 100%;
width: 100vw;
opacity: 1;
pointer-events: none;
//opacity: 1;
//pointer-events: auto;
overflow-x: hidden;
overflow-y: scroll;

Expand Down Expand Up @@ -137,21 +138,6 @@
}
}

// @media (max-width: 2100px) and (min-width: 1400px) {
// .contactPage {
// .heading {
// margin-top: 5.5rem;

// h2 {
// font-size: 72px;
// }
// }

// .cardContainer {
// margin-top: 5rem;
// }
// }
// }

@media (max-width: 2100px) and (min-width: 1800px) {
.contactPage {
Expand Down Expand Up @@ -187,7 +173,7 @@
margin-top: 4rem;

h2 {
font-size: 65px;
font-size: 58px;
}
}

Expand Down Expand Up @@ -217,11 +203,13 @@

@media (max-width: 1000px) {
.contactPage {
height: fit-content;

.heading {
h2 {
font-size: 62px;
font-size: 52px;
font-weight: 400;
line-height: 43px;
line-height: normal;
box-shadow: none;
}
}
Expand Down
Loading

0 comments on commit fc51ca3

Please sign in to comment.