Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Style fixes #534

Merged
merged 5 commits into from
Apr 13, 2024
Merged
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
200 changes: 100 additions & 100 deletions src/assets/img/maps/campus.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,156 changes: 547 additions & 609 deletions src/assets/img/maps/indoors.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,656 changes: 883 additions & 773 deletions src/assets/img/maps/judging.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@ interface Config {
readonly disabled: boolean
readonly hideChallengesAndPrizes: boolean
readonly hideMission: boolean
readonly hideWifiConfig: boolean
}

const config: Config = {
//fakeStartTime: '29/4/2022 21:59:55',
disabled: false,
hideChallengesAndPrizes: true,
hideMission: true,
hideWifiConfig: true,
}

export default config
10 changes: 5 additions & 5 deletions src/data/mentors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,26 @@ export interface Mentor {
readonly title: string
readonly description: string
readonly slack: string
readonly linkedin: string
readonly linkedin?: string
readonly languages: string
readonly webpage?: string
}

export const mentors: Mentor[] = [
/**{
{
title: 'Maurici Abad Gutierrez',
description: `💼 Senior Frontend Engineer`,
description: `Senior Frontend Engineer`,
slack: '@mauri',
linkedin: 'https://www.linkedin.com/in/mauriciabad',
languages: 'JavaScript, TypeScript, CSS, React, Vue, Next.js, Figma, Git',
webpage: 'https://mauri.app/',
},
{
title: 'Andrea Querol de Porras',
description: `💼 FPGA developer`,
description: `FPGA developer`,
slack: '@drea',
linkedin: 'https://linkedin.com/in/dreaqdp',
languages:
'C, C++, verilog and system verilog, FPGA shell development, RISC-V, Arduino, Raspberry, Linux, Vim, R, Git, MPI, OMP',
},**/
},
]
41 changes: 23 additions & 18 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,37 +4,39 @@ import {
faFacebook,
faGithub,
faInstagram,
faLinkedin,
faMedium,
faSlack,
faTwitch,
faTwitter,
faYoutube,
faLinkedin,
} from '@fortawesome/free-brands-svg-icons'
import {
faPlaneArrival,
faTrainSubway,
faWheelchair,
faCar,
faBus,
faHome,
faCalendarDays,
faMapLocationDot,
faUserSecret,
faUtensils,
faPlane,
faCar,
faChalkboardTeacher,
faCircleQuestion,
faGavel,
faMessage,
faCode,
faChalkboardTeacher,
faMicrochip,
faGift,
faHourglassStart,
faEnvelope,
faFileInvoiceDollar,
faGavel,
faGift,
faGlobe,
faHome,
faHourglassHalf,
faThumbsUp,
faHourglassStart,
faMapLocationDot,
faMessage,
faMicrochip,
faMoneyBillWave,
faPlane,
faPlaneArrival,
faThumbsUp,
faTrainSubway,
faUserSecret,
faUtensils,
faWheelchair,
} from '@fortawesome/free-solid-svg-icons'
import { createPinia } from 'pinia'
import { registerSW } from 'virtual:pwa-register'
Expand All @@ -61,6 +63,7 @@ library.add(
faInstagram,
faMedium,
faSlack,
faLinkedin,
faTwitch,
faTwitter,
faYoutube,
Expand All @@ -87,7 +90,9 @@ library.add(
faHourglassHalf,
faThumbsUp,
faFileInvoiceDollar,
faMoneyBillWave
faMoneyBillWave,
faEnvelope,
faGlobe
)

const app = createApp(App)
Expand Down
Loading
Loading