Skip to content

Commit 552daa1

Browse files
authored
Merge pull request #153 from HackHPI/feature/post-event
Feature/post event
2 parents b32565e + 9952706 commit 552daa1

File tree

137 files changed

+609
-171
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

137 files changed

+609
-171
lines changed

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
"@mui/lab": "^5.0.0-alpha.163",
1818
"@mui/material": "^5.15.5",
1919
"@mui/material-nextjs": "^5.15.9",
20+
"@react-spring/parallax": "^9.7.3",
21+
"@react-spring/web": "^9.7.3",
2022
"@types/node": "^20.11.24",
2123
"@types/react": "^18.2.48",
2224
"@types/react-dom": "^18.2.18",

src/app/layout.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,13 @@
1212
font-family: Neo Sans;
1313
font-weight: 100;
1414
src: url("/fonts/NeoSansStdLight.otf") format("opentype");
15+
}
16+
17+
@keyframes bannermove {
18+
0% {
19+
transform: translate(0, 0);
20+
}
21+
100% {
22+
transform: translate(-50%, 0);
23+
}
1524
}

src/app/page.tsx

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,33 @@
11
import {VerifiedChecker} from "../components/VerifiedChecker/VerifiedChecker";
22
import WhatToExpect from "../components/WhatToExpect/WhatToExpect";
33
import Sponsors from "../components/Sponsors/Sponsors";
4-
import Registration from "../components/Registration/Registration";
54
import Newsletter from "../components/Newsletter/Newsletter";
65
import {TimeTable} from "../components/TimeTable/TimeTable";
7-
import {Gallery} from "../components/Gallery/Gallery";
86
import {Faq} from "../components/Faq/Faq";
97
import Team from "../components/Team/Team";
108
import Speakers from "../components/Speakers/Speakers";
119
import Jury from "../components/Jury/Jury";
1210
import {Features} from "../components/Features/Features";
1311
import LandingImage from "../components/LandingImage/LandingImage";
14-
import {Location} from "../components/Location/Location";
12+
import {Gallery} from "../components/Gallery/Gallery";
1513

1614
export default function Page() {
1715
return (
1816
<>
19-
<LandingImage />
20-
<VerifiedChecker />
21-
<WhatToExpect />
22-
<Features />
23-
<Sponsors />
24-
<Registration />
25-
<Location />
26-
<Speakers />
27-
<Jury />
28-
<TimeTable />
29-
<Gallery />
30-
<Faq />
31-
<Newsletter />
32-
<Team />
17+
<LandingImage/>
18+
<VerifiedChecker/>
19+
<WhatToExpect/>
20+
<Features/>
21+
<Sponsors/>
22+
<Gallery/>
23+
<Newsletter/>
24+
{/*<Registration />
25+
<Location />*/}
26+
<Speakers/>
27+
<Jury/>
28+
<TimeTable/>
29+
<Faq/>
30+
<Team/>
3331
</>
3432
)
3533
}

0 commit comments

Comments
 (0)