Skip to content

Commit 77f93da

Browse files
authored
Merge pull request #48 from brainhack-vandy/repo-cleanup
Repo cleanup
2 parents ba45baf + 86a3e36 commit 77f93da

File tree

21 files changed

+1537
-1744
lines changed

21 files changed

+1537
-1744
lines changed

src/App.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React, { useState, useEffect } from "react";
22
import LoadingAnimation from "../src/components/LoadingAnimation";
33
import Navbar from "./components/Navbar";
44
import Home from "./components/Home/Home";
5-
import Projects from "./components/Projects";
5+
import Projects from "./components/Projects/Projects";
66
import FAQ from "./components/Faq";
77
import Footer from "./components/Footer";
88
import Teams from './components/Team/Team';
@@ -13,7 +13,6 @@ import {
1313
Routes,
1414
Navigate
1515
} from "react-router-dom";
16-
import "./style.css";
1716
import "./App.css";
1817
import "bootstrap/dist/css/bootstrap.min.css";
1918

src/components/Faq.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ const FAQ = () => {
9595
<section>
9696
<Container fluid className="faq-section" id="faq">
9797
<Container>
98-
<h1 className="project-heading">
98+
<h1 className="page-heading">
9999
Frequently Asked <strong className="purple">Questions</strong>
100100
</h1>
101101
<Row className="justify-content-center">

src/components/Footer.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ function Footer() {
1515
<h3>Copyright @ 2025 BrainHack Vanderbilt</h3>
1616
</Col>
1717
<Col md={4} className="footer-body">
18-
<ul className="footer-icons">
19-
<li className="social-icons">
18+
<ul className="footer-icons-section">
19+
<li className="footer-social-icons">
2020
<a
2121
href="https://github.com/brainhack-vandy"
2222
target="_blank"
@@ -25,7 +25,7 @@ function Footer() {
2525
<AiFillGithub />
2626
</a>
2727
</li>
28-
<li className="social-icons">
28+
<li className="footer-social-icons">
2929
<a
3030
href="https://www.youtube.com/@BrainHackVanderbilt"
3131
target="_blank"
@@ -34,7 +34,7 @@ function Footer() {
3434
<AiFillYoutube />
3535
</a>
3636
</li>
37-
<li className="social-icons">
37+
<li className="footer-social-icons">
3838
<a
3939
href="https://www.instagram.com/brainhackvu/"
4040
target="_blank"

src/components/Home/Introduction.js

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,28 @@
11
import React from "react";
22
import { Container, Row, Col } from "react-bootstrap";
33
import Tilt from "react-parallax-tilt";
4+
import './home.css'
45

56
function Introduction() {
67
return (
7-
<Container fluid className="home-about-section" id="about">
8+
<Container fluid className="introduction-section" id="about">
89
<Container>
910
<Row>
10-
<Col md={8} className="home-about-description">
11-
<h1 style={{ fontSize: "2.6em" }}>
11+
<Col md={8} className="introduction-description">
12+
<h1 className="introduction-heading">
1213
<span className="purple">A Quick Dive into Brainhack</span>
1314
</h1>
14-
<p className="home-about-body">
15+
<p className="introduction-body">
1516
So, you've heard of hackathons, right? Now, imagine that vibe but tailored specifically for the brainy world of neuroscience. That's Brainhack for you!
1617
<br />
1718
<br />
18-
<h2 style={{ fontSize: "1.8em" }} className="purple">
19+
<h2 className="introduction-subheading purple">
1920
Why the Buzz Around Brainhack?
2021
</h2>
2122
Neuroscience has some big questions on its plate. To tackle them (we're talking about massive datasets and some serious analytical firepower) Brainhack steps in. It's like a global rendezvous for brain enthusiasts, data geeks, and everyone in between.
2223
<br />
2324
<br />
24-
<h2 style={{ fontSize: "1.8em" }} className="purple">
25+
<h2 className="introduction-subheading purple">
2526
What's Cooking at Brainhack?
2627
</h2>
2728
Brainhack isn't just another science conference. Picture a global playground where researchers from all corners and fields come together. They roll up their sleeves and dive headfirst into some cool neuroscience projects.
@@ -33,23 +34,17 @@ function Introduction() {
3334
And because learning never stops, Brainhack has a side of tutorials. Dive into Python, get friendly with GitHub, float around in cloud computing, or dive deep into some fresh statistical methods. To wrap it up, Brainhack isn't just an event—it's a vibe. A place where data science flirts with neuroscience, all in the name of unlocking the secrets of the brain. Cool, right?
3435
<br />
3536
<br />
36-
<div style={{
37-
padding: "20px",
38-
background: "rgba(255, 255, 255, 0.05)",
39-
borderRadius: "8px",
40-
marginTop: "20px"
41-
}}>
37+
<div className="introduction-notice">
4238
Brainhack Vanderbilt is dedicated to ensuring a welcoming, harassment-free experience for everyone. We adhere to the Global Brainhack {" "}
4339
<a href="https://brainhack.org/code-of-conduct.html"
4440
target="_blank"
4541
rel="noreferrer"
46-
className="purple"
47-
style={{ textDecoration: "underline" }}>
42+
className="purple introduction-link">
4843
Code of Conduct.</a>
4944
</div>
5045
</p>
5146
</Col>
52-
<Col md={4} className="myAvtar">
47+
<Col md={4} className="introduction-image">
5348
<Tilt>
5449
<img src="assets/science1.svg" className="img-fluid" alt="avatar" />
5550
</Tilt>

src/components/Home/Location.js

Lines changed: 10 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,22 @@
11
import React from "react";
22
import { Container, Row, Col } from "react-bootstrap";
3+
import './home.css'
34

45
function Location() {
56
return (
6-
<Container fluid="lg" id="location" className="py-5">
7+
<Container fluid="lg" id="location" className="location-container">
78
<Row>
8-
<Col
9-
lg="4"
10-
className="d-flex flex-column justify-content-start align-items-start"
11-
>
12-
<h2 style={{
13-
fontSize: "2.3em",
14-
fontWeight: "500",
15-
color: "white",
16-
marginBottom: "20px"
17-
}}>
9+
<Col lg="4" className="d-flex flex-column justify-content-start align-items-start">
10+
<h2 className="location-heading">
1811
Location
1912
</h2>
20-
<address style={{ color: "white" }}>
13+
<address className="location-address">
2114
<a
2215
href="https://www.google.com/maps/place/2205+West+End+Ave,+Nashville,+TN+37240"
2316
title="Vanderbilt University"
2417
target="_blank"
2518
rel="noopener noreferrer"
26-
style={{ color: "var(--imp-text-color)" }}
19+
className="location-link"
2720
>
2821
Vanderbilt University
2922
</a>
@@ -32,37 +25,23 @@ function Location() {
3225
<br />
3326
Nashville, TN 37240
3427
</address>
35-
<h2 style={{
36-
fontSize: "2.1em",
37-
fontWeight: "500",
38-
color: "white",
39-
marginBottom: "20px",
40-
marginTop: "20px"
41-
}}>
28+
<h2 className="location-subheading">
4229
Contact Us
4330
</h2>
4431
<a
4532
href="mailto:[email protected]"
4633
4734
target="_blank"
4835
rel="noopener noreferrer"
49-
style={{ color: "var(--imp-text-color)" }}
36+
className="location-link"
5037
>
5138
5239
</a>
5340
</Col>
54-
<Col
55-
lg="8"
56-
className="d-flex flex-column justify-content-start align-items-start"
57-
>
41+
<Col lg="8" className="d-flex flex-column justify-content-start align-items-start">
5842
<iframe
59-
width="100%"
60-
height="400"
43+
className="location-map"
6144
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3221.7647765102442!2d-86.8033593!3d36.1479402!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x886466bdc9353ebd%3A0xed8cb21c50dcfb63!2s2205%20West%20End%20Ave%2C%20Nashville%2C%20TN%2037240!5e0!3m2!1sen!2sus!4v1701899453515!5m2!1sen!2sus"
62-
style={{
63-
border: 0,
64-
borderRadius: "8px"
65-
}}
6645
allowFullScreen=""
6746
loading="lazy"
6847
referrerPolicy="no-referrer-when-downgrade"

src/components/Home/ProjectPitch.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ function ProjectPitch() {
88
<Container fluid="lg">
99
<Row className="justify-content-center">
1010
<Col md={10}>
11-
<h2 className="project-pitch-heading">
11+
<h2 className="page-heading">
1212
Project <span className="purple">Pitches</span>
1313
</h2>
1414

1515
<div className="project-pitch-container">
1616
<Row className="align-items-center">
1717
<Col lg={8}>
1818
<p className="project-pitch-text">
19-
Got a brilliant neuroscience idea brewing? Share it on our project board, then at BrainHack take the floor for a quick pitch that'll make your fellow brain enthusiasts want to join your crew. No need for a TED-worthy presentation; just bring your enthusiasm and watch as other curious minds gravitate toward your idea. Whether you're planning to revolutionize fMRI analysis or create the next big open-source neuroimaging tool, your future collaborators are in the room – they just don't know it yet!
19+
Got a brilliant neuroscience idea brewing? Share it on our project board, then at BrainHack take the floor for a quick pitch that'll make your fellow brain enthusiasts want to join your crew. No need for a TED-worthy presentation; just bring your enthusiasm and watch as other curious minds gravitate toward your idea. Whether you're planning to revolutionize fMRI analysis or create the next big open-source neuroimaging tool, your future collaborators are in the room – they just don't know it yet!
2020
</p>
2121
</Col>
2222
<Col lg={4} className="d-flex justify-content-center">

src/components/Home/Sponsors.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import React from "react";
2-
import { Container, Row, Col } from "react-bootstrap";
2+
import { Row, Col } from "react-bootstrap";
3+
import './home.css'
34

45
function Sponsors() {
56
const sponsors = [
@@ -64,14 +65,14 @@ function Sponsors() {
6465
<div className="sponsor-section">
6566
<Row className="justify-content-center">
6667
<Col xs={7} lg={10}>
67-
<h2 className="project-pitch-heading">
68+
<h2 className="page-heading">
6869
2025 <span className="purple">Sponsors</span>
6970
</h2>
7071
<Row style={{ justifyContent: "center", paddingBottom: "50px" }}>
7172
{sponsors.map((sponsor, index) => (
7273
<Col key={index} lg={3} className="sponsor-icons">
7374
<a href={sponsor.href} target="_blank" rel="noopener noreferrer">
74-
<img src={sponsor.imgSrc} alt={sponsor.alt} style={{ width: "100%", height: "auto" }} />
75+
<img src={sponsor.imgSrc} alt={sponsor.alt} className="sponsor-image" />
7576
</a>
7677
</Col>
7778
))}
@@ -82,4 +83,4 @@ function Sponsors() {
8283
);
8384
}
8485

85-
export default Sponsors;
86+
export default Sponsors;

0 commit comments

Comments
 (0)