diff --git a/app/(pages)/(index-page)/_components/BottomSection/BottomSection.tsx b/app/(pages)/(index-page)/_components/BottomSection/BottomSection.tsx index 0ba1c4d9..a782b46f 100644 --- a/app/(pages)/(index-page)/_components/BottomSection/BottomSection.tsx +++ b/app/(pages)/(index-page)/_components/BottomSection/BottomSection.tsx @@ -1,12 +1,12 @@ import FAQ from './FAQ/FAQ'; import BottomPolaroids from './BottomPolaroids/BottomPolaroids'; import style from './BottomSection.module.scss'; -import DirectorFAQ from './DirectorFAQ/DirectorFAQ'; +// import DirectorFAQ from './DirectorFAQ/DirectorFAQ'; export default function BottomSection() { return (
- + {/* */}
diff --git a/app/(pages)/(index-page)/about-us/_components/Sponsor/Sponsor.module.scss b/app/(pages)/(index-page)/about-us/_components/Sponsor/Sponsor.module.scss index 1045c53c..a1f38284 100644 --- a/app/(pages)/(index-page)/about-us/_components/Sponsor/Sponsor.module.scss +++ b/app/(pages)/(index-page)/about-us/_components/Sponsor/Sponsor.module.scss @@ -184,14 +184,14 @@ .polaroid { grid-row: 1; grid-column: 1; - height: 592px; width: auto; transition: transform 1.9s cubic-bezier(0.79, 0.02, 0.21, 0.99) .1s; + width: 40vw; + max-width: none; @include mixins.phone { justify-self: center; - width: 150%; - height: auto; + width: 100vw; } } diff --git a/app/(pages)/_data/navLinks.ts b/app/(pages)/_data/navLinks.ts index 70848d6f..e3a5c711 100644 --- a/app/(pages)/_data/navLinks.ts +++ b/app/(pages)/_data/navLinks.ts @@ -3,12 +3,12 @@ interface NavLink { slug: string; } const navLinks: NavLink[] = [ - // { name: 'Impact', slug: '/#whatishackdavis' }, + { name: 'Impact', slug: '/#whatishackdavis' }, // { name: 'Prizes', slug: '/#prizes' }, // { name: 'Inclusion', slug: '/#everyone' }, - { name: 'Teams', slug: '/#teams' }, + // { name: 'Teams', slug: '/#teams' }, { name: 'FAQ', slug: '/#faq' }, - // { name: 'Sponsors', slug: '/#sponsors' }, + { name: 'Sponsors', slug: '/#sponsors' }, { name: 'About', slug: '/about-us' }, ];