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 #79 from acm-ucr/acm-ucr/images_821319974b8e4cba
Update Images to Webp
- Loading branch information
Showing
5 changed files
with
29 additions
and
4 deletions.
There are no files selected for viewing
Binary file not shown.
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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
const NotFound = () => { | ||
return <div>404 Page Not Found</div>; | ||
import NotFound from "@/components/NotFound"; | ||
|
||
const NotFoundPage = () => { | ||
return <NotFound />; | ||
}; | ||
|
||
export default NotFound; | ||
export default NotFoundPage; |
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,11 @@ | ||
const NotFound = () => { | ||
return ( | ||
<div className="flex h-screen flex-col items-center justify-center bg-csa-tan-100"> | ||
<p className="text-[12vw] font-bold text-csa-yellow-300">404</p> | ||
<p className="font-lora text-[2.5vw] text-csa-gray-100"> | ||
page not found :( | ||
</p> | ||
</div> | ||
); | ||
}; | ||
export default NotFound; |
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,7 +1,17 @@ | ||
import React from "react"; | ||
import Image from "next/image"; | ||
import pinkFlower from "@/public/gallery/pinkFlower.webp"; | ||
|
||
const Gallery = () => { | ||
return <div></div>; | ||
return ( | ||
<div> | ||
<Image | ||
src={pinkFlower} | ||
alt="pinkFlower" | ||
className="absolute bottom-0 left-0 w-2/12" | ||
/> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Gallery; |