generated from acm-ucr/acm-ucr-website
-
Notifications
You must be signed in to change notification settings - Fork 1
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 #89 from acm-ucr/dev
theo the goat
- Loading branch information
Showing
21 changed files
with
117 additions
and
72 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
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
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
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
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,26 +1,38 @@ | ||
import Liam from "@/public/board/Liam.webp"; | ||
import Jose from "@/public/board/Jose.webp"; | ||
import Kurt from "@/public/board/Kurt.webp"; | ||
import Noliver from "@/public/board/Noliver.webp"; | ||
import Shivam from "@/public/board/Shivam.webp"; | ||
import Aston from "@/public/board/Aston.webp"; | ||
export const ITEMS = [ | ||
{ | ||
topText: "Position1", | ||
bottomText: "Name1", | ||
topText: "President", | ||
bottomText: "Aston", | ||
image: Aston, | ||
}, | ||
{ | ||
topText: "Postion2", | ||
bottomText: "Name2", | ||
topText: "Vice President", | ||
bottomText: "Kurt", | ||
image: Kurt, | ||
}, | ||
{ | ||
topText: "Position3", | ||
bottomText: "Name3", | ||
topText: "Events", | ||
bottomText: "Liam", | ||
image: Liam, | ||
}, | ||
{ | ||
topText: "Position4", | ||
bottomText: "Name4", | ||
topText: "Secretary", | ||
bottomText: "Shivam", | ||
image: Shivam, | ||
}, | ||
{ | ||
topText: "Position5", | ||
bottomText: "Name5", | ||
topText: "Publicity", | ||
bottomText: "Jose", | ||
image: Jose, | ||
}, | ||
{ | ||
topText: "Position6", | ||
bottomText: "Name6", | ||
topText: "Publicity", | ||
bottomText: "Noliver", | ||
image: Noliver, | ||
}, | ||
]; |
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,16 +1,11 @@ | ||
export interface Item { | ||
topText: string; | ||
bottomText: string; | ||
} | ||
|
||
export const ITEMS: Item[] = [ | ||
{ topText: "NAME", bottomText: "GRAD YEAR" }, | ||
{ topText: "NAME", bottomText: "GRAD YEAR" }, | ||
{ topText: "NAME", bottomText: "GRAD YEAR" }, | ||
export const ITEMS = [ | ||
{ topText: "NAME", bottomText: "GRAD YEAR", image: "" }, | ||
{ topText: "NAME", bottomText: "GRAD YEAR", image: "" }, | ||
{ topText: "NAME", bottomText: "GRAD YEAR", image: "" }, | ||
]; | ||
|
||
export const JEDIITEMS: Item[] = [ | ||
{ topText: "NAME", bottomText: "" }, | ||
{ topText: "NAME", bottomText: "" }, | ||
{ topText: "NAME", bottomText: "" }, | ||
export const JEDIITEMS = [ | ||
{ topText: "NAME", bottomText: "", image: "" }, | ||
{ topText: "NAME", bottomText: "", image: "" }, | ||
{ topText: "NAME", bottomText: "", image: "" }, | ||
]; |