-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdata.ts
More file actions
27 lines (24 loc) · 1.12 KB
/
data.ts
File metadata and controls
27 lines (24 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { Facebook, GitHub, Instagram, LinkedIn } from "@mui/icons-material";
import DiscordIcon from "./components/nav/DiscordIcon";
// General stuff:
// - All images need to go somewhere in /public, and the links are rooted at the /public folder
// - Available icons can be found here: https://mui.com/material-ui/material-icons/
// Pages and links displayed on nav
// Probably shouldn't be touched
export const navData = [
{ text: "About", href: "/about-us" },
{ text: "Projects", href: "/our-projects" },
{ text: "Events", href: "/events" },
{ text: "Starlight", href: "/starlight" },
{ text: "Techspire", href: "/techspire" },
{ text: "Get Involved", href: "/get-involved" },
{ text: "Sponsors", href: "/supporters" },
];
// Links to socials on nav
export const socialsData = [
{ Icon: GitHub, href: "https://github.com/devsoc-unsw" },
{ Icon: Facebook, href: "https://www.facebook.com/devsocUNSW/" },
{ Icon: Instagram, href: "https://www.instagram.com/devsoc_unsw/" },
{ Icon: LinkedIn, href: "https://www.linkedin.com/company/97436660/" },
{ Icon: DiscordIcon, href: "https://discord.com/invite/u9p34WUTcs" },
];