generated from acm-ucr/acm-ucr-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #106 from acm-ucr/Simon-Cun/LanternImgReplacement
Replaced Lantern Img
- Loading branch information
Showing
13 changed files
with
79 additions
and
19 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
import GroupPhoto from "@/components/board/GroupPhoto"; | ||
const Page = () => { | ||
return <div className="bg-csa-tan-100"></div>; | ||
return ( | ||
<div className="bg-csa-tan-100"> | ||
<GroupPhoto /> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Page; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import Image from "next/image"; | ||
import GroupImage from "@/public/board/Group-Photo-CSA.webp"; | ||
import WhiteFlower from "@/public/board/whiteflowers.svg"; | ||
import Boar from "@/public/board/boar.svg"; | ||
/* import BoarShadow from "@/public/board/boarshadow.svg"; */ | ||
|
||
const GroupPhoto = () => { | ||
return ( | ||
<div className="grid grid-cols-2"> | ||
<div className="relative flex items-center justify-center"> | ||
<Image | ||
src={GroupImage} | ||
alt="Group Image" | ||
className="w-3/4 rounded-[2rem] border-8 border-csa-green-100" | ||
/> | ||
<Image | ||
src={WhiteFlower} | ||
alt="White Flower" | ||
className="absolute bottom-0 left-0 w-1/5" | ||
/> | ||
</div> | ||
<div className="flex -translate-y-[6%] translate-x-[10%] items-center justify-end"> | ||
<Image src={Boar} alt="Boar" className="w-11/12" /> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default GroupPhoto; |