File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
app/(pre-dashboard)/(landing) Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ export default async function Page() {
4646 { <GenericSection title="Past Team Members">
4747 <PastTeam />
4848 </GenericSection> } */ }
49- < div className = "- mt-[1000px]" >
49+ < div className = "mt-[-200px] md: mt-[-500px] lg:mt-[- 1000px]" >
5050 < Image
5151 src = "/landing/F2025/bottom.png"
5252 alt = "bottom image"
Original file line number Diff line number Diff line change @@ -3,12 +3,13 @@ import React from 'react';
33import { hackRUFAQ } from '@/app/lib/constants' ;
44import Accordian from './Accordion' ;
55import { useState } from 'react' ;
6+ import { inter } from '@/app/ui/fonts' ;
67
78function QuestionContainer ( ) {
89 const [ activeAccordion , setActiveAccordion ] = useState ( - 1 ) ;
910
1011 return (
11- < div className = "w-full whitespace-pre-line" >
12+ < div className = "w-full whitespace-pre-line bg-gray-900/20 " >
1213 { Object . keys ( hackRUFAQ ) . map ( ( question : string , i : number ) => (
1314 < Accordian
1415 key = { i }
@@ -28,7 +29,7 @@ export default function FAQ() {
2829 return (
2930 < div
3031 id = "FAQ"
31- className = " relative z-10 flex h-[67rem] w-full flex-col items-center justify-start overflow-visible sm:h-[50rem] md:h-[43rem]"
32+ className = { ` relative z-10 flex h-[67rem] w-full flex-col items-center justify-start overflow-visible sm:h-[50rem] md:h-[43rem] ${ inter . className } ` }
3233 >
3334 < div className = "relative flex w-full flex-col items-center px-[10vw] pb-[10rem] xl:px-[15vw]" >
3435 < QuestionContainer />
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ export default function GenericSection(props: GenericSectionProps) {
6767 ) : (
6868 < div >
6969 { props . title == 'FAQ' ? (
70- < div className = "flex items-center justify-center p-4" >
70+ < div className = "flex items-center justify-center p-4 pb-32 " >
7171 < p className = "absolute z-50 text-lg text-gold-100 text-white sm:text-4xl md:pl-8 md:pt-2 md:text-2xl lg:text-4xl" >
7272 FAQ
7373 </ p >
You can’t perform that action at this time.
0 commit comments