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.
- Loading branch information
Showing
3 changed files
with
64 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
import React from "react"; | ||
|
||
import Team from "@/components/board/Team"; | ||
const page = () => { | ||
return <div>page</div>; | ||
return ( | ||
<div> | ||
<Team /> | ||
</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,7 +1,61 @@ | ||
import React from "react"; | ||
|
||
import Profile from "@/components/board/Profile"; | ||
import Javen from "@/public/assets/board/Javen.svg"; | ||
const Team = () => { | ||
return <div>Team</div>; | ||
return ( | ||
<div className="flex justify-center items-center"> | ||
<div className="grid grid-cols-4 w-10/12 gap-3 justify-center items-center bg-red-200"> | ||
<div> | ||
<Profile | ||
name="Javen Dosanjh" | ||
email="[email protected]" | ||
title="Vice President" | ||
image={Javen} | ||
year="2nd" | ||
major="Computer Science" | ||
pronouns="he/him" | ||
linkedin="linkedin.com" | ||
/> | ||
</div> | ||
<div> | ||
<Profile | ||
name="Javen Dosanjh" | ||
email="[email protected]" | ||
title="Vice President" | ||
image={Javen} | ||
year="2nd" | ||
major="Computer Science" | ||
pronouns="he/him" | ||
linkedin="linkedin.com" | ||
/> | ||
</div> | ||
<div> | ||
<Profile | ||
name="Javen Dosanjh" | ||
email="[email protected]" | ||
title="Vice President" | ||
image={Javen} | ||
year="2nd" | ||
major="Computer Science" | ||
pronouns="he/him" | ||
linkedin="linkedin.com" | ||
/> | ||
</div> | ||
<div> | ||
<Profile | ||
name="Javen Dosanjh" | ||
email="[email protected]" | ||
title="Vice President" | ||
image={Javen} | ||
year="2nd" | ||
major="Computer Science" | ||
pronouns="he/him" | ||
linkedin="linkedin.com" | ||
/> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Team; |