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 #82 from acm-ucr/dev
merge to main
- Loading branch information
Showing
34 changed files
with
711 additions
and
111 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,28 @@ | ||
import { BOARD } from "../../data/mockBoard"; | ||
import Board from "../../components/board/Board"; | ||
import Title from "@/components/Title"; | ||
|
||
const page = () => { | ||
return <div>page</div>; | ||
return ( | ||
<div className="relative w-full flex flex-col items-center mt-14"> | ||
<div className="absolute w-1/2 aspect-square bg-ewb-blue-100/40 rounded-full -translate-y-14" /> | ||
<Title title="MEET THE TEAM" /> | ||
<div className="relative grid grid-cols-4 w-9/12 gap-8 mt-14"> | ||
{BOARD.map((item, index) => ( | ||
<Board | ||
key={index} | ||
name={item.name} | ||
position={item.position} | ||
grade={item.grade} | ||
major={item.major} | ||
links={item.links} | ||
pronouns={item.pronouns} | ||
picture={item.picture} | ||
/> | ||
))} | ||
</div> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,14 @@ | ||
import AirQuality from "@/components/projects/ AirQuality"; | ||
import Header from "@/components/projects/Header"; | ||
import header from "../../../../public/images/airQualitySystem/AirQualitySystemHeader.webp"; | ||
|
||
const page = () => { | ||
return <div>page</div>; | ||
return ( | ||
<> | ||
<Header img={header.src} title="Air Quality System" /> | ||
<AirQuality /> | ||
</> | ||
); | ||
}; | ||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
import React from "react"; | ||
import CostaRica from "@/components/projects/CostaRica"; | ||
import Header from "@/components/projects/Header"; | ||
import header from "../../../../public/images/costaRica/CostaRicaHeader.webp"; | ||
|
||
const page = () => { | ||
return <div>page</div>; | ||
return ( | ||
<> | ||
<Header img={header.src} title="Costa Rica Project" /> | ||
<CostaRica /> | ||
</> | ||
); | ||
}; | ||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,14 @@ | ||
import React from "react"; | ||
import Tanzania from "@/components/projects/Tanzania"; | ||
import Header from "@/components/projects/Header"; | ||
import header from "../../../../public/images/tanzania/tanzaniaHeader.webp"; | ||
|
||
const page = () => { | ||
return <div>page</div>; | ||
return ( | ||
<> | ||
<Header img={header.src} title="Project" /> | ||
<Tanzania /> | ||
</> | ||
); | ||
}; | ||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,39 @@ | ||
import whiteLogo from "../../public/assets/whiteLogo.svg"; | ||
import Image from "next/image"; | ||
import Link from "next/link"; | ||
import { ICONS } from "@/data/icons"; | ||
import { LINKS } from "@/data/links"; | ||
|
||
const Footer = () => { | ||
return <div>Footer</div>; | ||
return ( | ||
<div className="w-full bg-ewb-blue-200 border-t-[20px] border-t-ewb-green pt-32 flex justify-between"> | ||
<div className="flex items-end m-3 gap-3 text-white font-bold text-xl w-1/2"> | ||
<Image src={whiteLogo} alt="EWB Logo" /> | ||
<p className="text-xs md:text-lg">EWB at UCR</p> | ||
</div> | ||
|
||
<div className="text-right text-white text-sm flex flex-col m-0 p-0 mx-4 w-1/2"> | ||
<div className="flex flex-row ml-20 self-end"> | ||
{LINKS.map((social, index) => ( | ||
<Link | ||
key={index} | ||
href={social.link} | ||
className="no-underline text-white hover:text-ewb-white mx-1 flex flex-col items-center hover:-translate-y-0.5 duration-300" | ||
> | ||
<icons className="text-2xl">{ICONS[social.text]}</icons> | ||
</Link> | ||
))} | ||
</div> | ||
<div className="py-2"> | ||
<div>900 University Ave</div> | ||
<div>Riverside, CA 92521</div> | ||
<div>United States</div> | ||
<div>[email protected]</div> | ||
<div>619-395-3534</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Footer; |
Oops, something went wrong.