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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ generated
.DS_Store
docker-build

.vscode
.env
77 changes: 77 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"@emotion/styled": "11.3.0",
"css-loader": "^6.8.1",
"d3": "7.6.1",
"dotenv": "^16.3.1",
"framer-motion": "4.1.17",
"prop-types": "15.7.2",
"react": "18.2.0",
Expand All @@ -41,6 +42,7 @@
"@types/styled-components": "5.1.9",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"dotenv-webpack": "^8.0.1",
"eslint": "7.25.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-import": "2.22.1",
Expand Down
2 changes: 1 addition & 1 deletion src/archived/Presentations.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react';
import { PRESENTATIONS_LIST } from '../utils/data/researchInformation';
import { PRESENTATIONS_LIST } from './researchInformation';
import { PublicationsGrid } from './PublicationsGrid';

export const Presentations: React.FC = () => (
Expand Down
4 changes: 2 additions & 2 deletions src/archived/Publications.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as React from 'react';
import { PublicationsGrid } from './PublicationsGrid';
import { PUBLICATIONS_LIST } from '../utils/data/researchInformation';
import { PUBLICATIONS_LIST } from './researchInformation';

export const Publications: React.VFC = () => (
export const Publications: React.FC = () => (
<PublicationsGrid title="Publications" list={PUBLICATIONS_LIST} />
);
5 changes: 1 addition & 4 deletions src/archived/Research.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
import * as React from 'react';
import {
ONGOINGRESEARCH_LIST,
PASTRESEARCH_LIST,
} from '../utils/data/researchInformation';
import { ONGOINGRESEARCH_LIST, PASTRESEARCH_LIST } from './researchInformation';
import { ResearchGrid } from './ResearchGrid';

export const Research = () => {
Expand Down
2 changes: 1 addition & 1 deletion src/utils/data/alumni.tsx → src/archived/alumni.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AlumniInformation } from '../../types/types';
import { AlumniInformation } from '../types/types';

export const ALUMNI: Array<AlumniInformation> = [
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { InternTestimonial, PersonInformation } from '../../types/types';
import { InternTestimonial, PersonInformation } from '../types/types';

export const CURRENTMEMBERS_LIST: Array<PersonInformation> = [
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Link, Text } from '@chakra-ui/react';
import * as React from 'react';
import { ProjectInfo, ProjectInformation } from '../../types/types';
import { ProjectInfo, ProjectInformation } from '../types/types';

export const PROJECTS_LIST: Array<ProjectInfo> = [
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Box, Link, Text } from '@chakra-ui/react';
import * as React from 'react';
import { ResearchInformation, PublicationInformation } from '../../types/types';
import { ResearchInformation, PublicationInformation } from '../types/types';

export const ONGOINGRESEARCH_LIST: Array<ResearchInformation> = [
{
Expand Down
17 changes: 17 additions & 0 deletions src/components/ContactForm/ContactForm.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,20 @@ blockquote {
font-weight: 400;
margin-left: 15px;
}

#boxApplicationType {
font-size: 15px;
font-weight: 600;
margin-bottom: 15px;
font-family:
Segoe UI,
Helvetica Neue,
sans-serif;
}

#submitButton {
font-size: 1em;
font-weight: 600;
font-family: Graphik, Helvetica, Arial, sans-serif !important;
text-transform: uppercase;
}
Loading