-
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.
added all company descriptions and refactored how page pulls from con…
…stants.ts for about page
- Loading branch information
Showing
6 changed files
with
208 additions
and
70 deletions.
There are no files selected for viewing
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.
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,14 +1,65 @@ | ||
export const companies = [ | ||
{ company: 'UCSD Design Lab', org_type: 'Recruiting', description: '' }, | ||
{ company: 'Deloitte', org_type: 'Recruiting' }, | ||
{ | ||
company: 'UCSD Design Lab', | ||
org_type: 'Recruiting', | ||
companyImage: '../company-svgs/', | ||
dimensions: { width: '150px', height: '50px' }, | ||
description: | ||
'The UC San Diego Design Lab works on major societal issues, such as large-scale education, automation, healthcare, and the ethical issues that are of ever-increasing importance. For the Design Lab, design is a way of thinking, addressing the core issues, always taking a systems point of view, emphasizing the role of people in the complex systems of the modern world.' | ||
}, | ||
{ | ||
company: 'Deloitte', | ||
org_type: 'Recruiting', | ||
companyImage: 'images/company-images/deloitte.png', | ||
dimensions: { width: '150px', height: '50px' }, | ||
description: | ||
'With more than 100,000 professionals, Deloitte provides audit and assurance, tax, consulting, and risk and financial advisory services to a broad cross-section of the largest corporations and governmental agencies.' | ||
}, | ||
{ | ||
company: 'The Art of Problem Solving', | ||
org_type: 'Recruiting', | ||
description: '' | ||
companyImage: './company-svgs/', | ||
dimensions: { width: '150px', height: '50px' }, | ||
description: | ||
'Art of Problem Solving is an education technology company inspiring and training the next generation of great problem solvers. They help students develop problem-solving skills by offering resources in a variety of different formats, building a community where students can connect and collaborate with their peers.' | ||
}, | ||
{ | ||
company: 'San Diego Zoo', | ||
org_type: 'Recruiting', | ||
companyImage: './company-svgs/', | ||
dimensions: { width: '150px', height: '50px' }, | ||
description: | ||
'San Diego Zoo is an international nonprofit conservation leader, committed to inspiring passion for nature and creating a world where all life thrives. Made up of two world-famous facilities, the San Diego Zoo and San Diego Zoo Safari Park— together they give millions of guests, in person and virtually, the opportunity to experience conservation in action.' | ||
}, | ||
{ company: 'San Diego Zoo', org_type: 'Recruiting', description: '' }, | ||
{ company: 'CoNote', org_type: 'Recruiting', description: '' }, | ||
{ company: 'UCSD Library', org_type: 'Recruiting', description: '' }, | ||
{ company: 'Notion', org_type: 'Networking Only', description: '' }, | ||
{ company: 'UCSD ACM', org_type: 'Networking Only', description: '' } | ||
{ | ||
company: 'CoNote', | ||
org_type: 'Recruiting', | ||
companyImage: './company-svgs/', | ||
dimensions: { width: '150px', height: '50px' }, | ||
description: | ||
'CoNote.ai is a start-up technology that helps researchers transcribe, analyze, and organize their data while collaborating with their team.' | ||
}, | ||
{ | ||
company: 'UCSD Library', | ||
org_type: 'Recruiting', | ||
companyImage: './company-svgs/', | ||
description: | ||
"The UC San Diego Library, one of the nation's top public academic libraries, plays a critical role in advancing and supporting the university's research, teaching, patient care, and public service missions. The Library provides the foundation of knowledge needed to advance cutting-edge discoveries in a wide range of disciplines--from healthcare and science to public policy and the arts. The Library provides access to more than 7 million items, including digital and print volumes, journals, and multimedia materials to meet the knowledge demands of scholars, students, and members of the public." | ||
}, | ||
{ | ||
company: 'Notion', | ||
org_type: 'Networking Only', | ||
companyImage: 'images/company-images/notion.png', | ||
dimensions: { width: '100px', height: '100px' }, | ||
description: | ||
"Notion blends your everyday work tools into one. Product roadmap? Company wiki? Meeting notes? With Notion, they're all in one place, and totally customizable to meet the needs of any workflow. It's the all-in-one workspace for you, your team, and your whole company." | ||
}, | ||
{ | ||
company: 'UCSD ACM', | ||
org_type: 'Networking Only', | ||
companyImage: './company-svgs/', | ||
dimensions: { width: '150px', height: '50px' }, | ||
description: | ||
'ACM at UCSD is an inclusive community of students passionate about technology. As UCSD’s largest members-first computing org, they offer workshops, socials, and projects through different communities including AI, Cyber, Hack, and Design.' | ||
} | ||
]; |
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