Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/static/event/btb/2025/group.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/static/event/btb/2025/otherteamfocus.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/static/event/btb/2025/whole.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/static/event/btb/2025/wholea2.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/static/event/codesprint/2025/j.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/static/event/estimathon/2025/group.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/static/icon/btb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/static/icon/eventicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/static/icon/eventicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/static/icon/eventiconl.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
57 changes: 57 additions & 0 deletions public/static/icon/icpccomplogo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/static/icon/interviewtrackicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/static/icon/trainingicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/static/icon/workshopicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 4 additions & 8 deletions src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ const { createHash } = require('crypto');


const HomeContainer = lazy(() => import('pages/home'));
const WorkshopsContainer = lazy(() => import('pages/workshops'))
const EventsContainer = lazy(() => import('pages/events'));
const RegionalsContainer = lazy(() => import('pages/regionals'));
const TeamContainer = lazy(() => import('pages/team'));
Expand All @@ -72,9 +73,9 @@ const Navbar = (props) => {
const MenuContent = () => {
return (
<Fragment>
<NavLink to='/' style={({isActive}) => ({color: isActive ? '#ff5479' : 'inherit'})}>
<NavLink to='/workshops' style={({isActive}) => ({color: isActive ? '#ff5479' : 'inherit'})}>
<Button fontWeight="semibold" fontFamily="heading" size="sm" variant="transparent" _hover={{color: "brand.500"}}>
home
workshops
</Button>
</NavLink>
<NavLink end to='/events' style={({isActive}) => ({color: isActive ? '#ff5479' : 'inherit'})}>
Expand All @@ -92,12 +93,6 @@ const Navbar = (props) => {
team
</Button>
</NavLink>
<a href="https://codesprintla.uclaacm.com/">
<Button fontWeight='semibold' fontFamily="heading" size="sm" variant="transparent" _hover={{color: "brand.500"}}>
codesprint
</Button>
</a>

</Fragment>
)};

Expand Down Expand Up @@ -282,6 +277,7 @@ const App = () => {
<MainContent>
<Routes>
<Route exact path="/" element={<HomeContainer />} />
<Route exact path="/workshops" element={<WorkshopsContainer />} />
<Route exact path="/events" element={<EventsContainer />} />
<Route exact path="/icpc" element={<RegionalsContainer />} />
<Route exact path="/team" element={<TeamContainer />} />
Expand Down
2 changes: 1 addition & 1 deletion src/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ label {
max-width: 600px;
width: 80%;
// flex-grow: 1;
}
}
Loading