Skip to content

Commit b18adbf

Browse files
authored
Merge pull request #193 from HackHPI/develop
Release
2 parents b935543 + 539ee15 commit b18adbf

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

src/components/LandingImage/LandingImage.jsx

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
"use client";
22
import { Button, Card, Container, Stack, Typography } from "@mui/material";
33
import { TypeAnimation } from "react-type-animation";
4-
import {Article, CalendarMonthOutlined, CameraAlt} from "@mui/icons-material";
4+
import {
5+
AppRegistration,
6+
Article,
7+
CalendarMonthOutlined,
8+
CameraAlt,
9+
Description,
10+
EditNote,
11+
EditNoteOutlined,
12+
} from "@mui/icons-material";
513
import { useEffect, useState } from "react";
614
import { MeshContainer } from "./MeshContainer/MeshContainer";
715

@@ -68,18 +76,19 @@ function LandingImage() {
6876
fontSize: "1rem",
6977
}}
7078
color={"primary"}
71-
startIcon={<CameraAlt />}
79+
startIcon={<Description />}
80+
//startIcon={<CameraAlt />}
7281
onClick={() =>
73-
// document.getElementById("signupForm").scrollIntoView({
74-
document.getElementById("images").scrollIntoView({
82+
document.getElementById("signupForm").scrollIntoView({
83+
//document.getElementById("images").scrollIntoView({
7584
behavior: "smooth",
7685
block: "start",
7786
inline: "nearest",
7887
})
7988
}
8089
>
81-
{/* Registration */}
82-
Photo Gallery
90+
Registration
91+
{/*Photo Gallery */}
8392
</Button>
8493
<Card
8594
sx={{ height: "3.5rem", justifyContent: "center", display: "flex" }}

0 commit comments

Comments
 (0)