Skip to content
This repository was archived by the owner on Nov 24, 2025. It is now read-only.

Commit b6dabcd

Browse files
authored
nextwavedev_22_6_nscad-to-nextwavedev (#7)
* changed nsc ad to next wave dev and students to developers * changed studentThumbnail to developer Thumbnails
1 parent 67da5c3 commit b6dabcd

12 files changed

Lines changed: 32 additions & 48 deletions

File tree

src/App.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Main from './pages/Main'
44
import Contact from './pages/Contact'
55
import About from './pages/About'
66
import PortfolioPage from './pages/PortfolioPage'
7-
import StudentsPage from './pages/StudentsPage'
7+
import DevelopersPage from './pages/DevelopersPage'
88
import ReactGA from "react-ga4";
99

1010
function App() {
@@ -17,7 +17,7 @@ function App() {
1717
<Route path='/Contact' element={<Contact />} />
1818
<Route path='/About' element={<About />} />
1919
<Route path='/Portfolio' element={<PortfolioPage />} />
20-
<Route path='/Students' element={<StudentsPage />} />
20+
<Route path='/Developers' element={<DevelopersPage />} />
2121
</Routes>
2222
</Router>
2323
);
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import React from 'react';
33
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
44
import { faGithub, faLinkedin } from "@fortawesome/free-brands-svg-icons";
55

6-
const Student = ({ name, photo, about, email, github, linkedin, role }) => {
6+
const Developer = ({ name, photo, about, email, github, linkedin, role }) => {
77
return (
88
<div className='students-flexcolumn__student-flex-item'>
99
<img src={require('../images/students/'+photo)} alt={name} className='students-flexcolumn__student-flex-item__img' />
@@ -79,4 +79,4 @@ const styles = {
7979
},
8080
};
8181

82-
export default Student;
82+
export default Developer;
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
const StudentThumbnail = ({fileName, studentName}) =>{
1+
const DeveloperThumbnail = ({fileName, studentName}) =>{
22
return (
33
<img className="student-thumbnail" src={require('../images/students/'+fileName)} alt={"photo of "+studentName}/>
44
)
55
}
6-
export default StudentThumbnail
6+
export default DeveloperThumbnail

src/components/Footer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const Footer = () => {
4646
<FooterLink name="About" />
4747
</li>
4848
<li>
49-
<FooterLink name="Students" />
49+
<FooterLink name="Developers" />
5050
</li>
5151
<li>
5252
<FooterLink name="Portfolio" />

src/components/Navbar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const Navbar =()=>{
2020
<WhiteSpacing />
2121
<Item name={"About"} />
2222
<WhiteSpacing />
23-
<Item name={"Students"} />
23+
<Item name={"Developers"} />
2424
<WhiteSpacing />
2525
<Item name={"Portfolio"} />
2626
</div>

src/components/microComponents/contact/form.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export function FormComponent() {
9595
{ loading ? "Sending" : "Send" }
9696
</button>
9797
<div style={{color: "#3E3E3E", marginTop: "1.2rem"}}>Or contact us by email at
98-
northseattle.appdev@gmail.com or through our phone number at [coming soon]
98+
nextwavedev.org@gmail.com or through our phone number at [coming soon]
9999
</div>
100100
</form>
101101
);

src/index.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ navbar
332332
.students-flexcolumn__h1{
333333
font-size: 3rem;
334334
font-weight: 700;
335-
width: 13ch;
335+
width: 14ch;
336336
}
337337
.students-flexcolumn__student-flex-item{
338338
display: flex;

src/pages/About.js

Lines changed: 4 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ function About() {
77
return (
88
<>
99
<Helmet>
10-
<title> NSC App Development - About </title>
10+
<title> Next Wave Dev - About </title>
1111
</Helmet>
1212
<Navbar />
1313

@@ -40,7 +40,7 @@ function About() {
4040
fontWeight: 600,
4141
}}
4242
>
43-
North Seattle Application Development
43+
Next Wave Dev
4444
</div>
4545
</div>
4646
<div
@@ -63,29 +63,9 @@ function About() {
6363
<strong>About Us:</strong>
6464
<br></br>
6565
<br></br>
66-
Welcome to the NSC College Application Development Program,
67-
where we empower students to create innovative and impactful
68-
solutions in the ever-evolving world of technology. Our program
69-
is dedicated to cultivating the next generation of skilled app
70-
developers, equipping them with the knowledge and hands-on
71-
experience needed to excel in the tech industry.
72-
</div>
73-
<div>
74-
Through a blend of rigorous coursework, practical project
75-
development, internships and mentorships from industry experts,
76-
and engagement with real-time projects from clients, we foster a
77-
dynamic learning environment that nurtures creativity, critical
78-
thinking, and technical proficiency. Our students engage in
79-
real-world challenges, developing apps that address contemporary
80-
issues and drive technological progress.
81-
</div>
82-
<div style={{ marginTop: "1rem" }}>
83-
At NSC, we believe in the power of education and innovation to
84-
transform lives and communities. Join us to unlock your
85-
potential, gain invaluable experience, and make a meaningful
86-
impact in the digital world. Together, we shape the future of
87-
technology.
66+
Bridging the gap between classroom learning and career success, we equip students and recent graduates with the skills, mentorship, and real-world experience needed to deliver high-quality tech solutions.
8867
</div>
68+
8969
</div>
9070
</div>
9171
</div>

src/pages/Contact.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function Contact() {
99
return (
1010
<>
1111
<Helmet>
12-
<title> NSC App Development - Contact </title>
12+
<title> Next Wave Dev - Contact </title>
1313
</Helmet>
1414
<Navbar />
1515
<div style={{ minHeight: "calc(100vh - 95px)", height: "1px" }}>
Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
import Navbar from "../components/Navbar";
33
import Footer from "../components/Footer";
44
import React from "react";
5-
import Student from "../components/Student";
5+
import Developer from "../components/Developer";
66
import data from "../students.json";
7+
import { Helmet } from "react-helmet";
78

89
// const students = [
910
// {
@@ -26,14 +27,17 @@ import data from "../students.json";
2627

2728
const students = data.students;
2829

29-
const StudentsPage = () => {
30+
const DevelopersPage = () => {
3031
return (
3132
<div>
33+
<Helmet>
34+
<title> Next Wave Dev - Developers </title>
35+
</Helmet>
3236
<Navbar />
3337
<div className="students-flexcolumn">
34-
<h1 className="students-flexcolumn__h1">Our Students</h1>
38+
<h1 className="students-flexcolumn__h1">Our Developers</h1>
3539
{students.map((student, index) => (
36-
<Student key={index} {...student} />
40+
<Developer key={index} {...student} />
3741
))}
3842
</div>
3943
<Footer />
@@ -53,4 +57,4 @@ const styles = {
5357
},
5458
};
5559

56-
export default StudentsPage;
60+
export default DevelopersPage;

0 commit comments

Comments
 (0)