From 94c1e82f7d7f4f894e44ebeb56dd46797f97c2df Mon Sep 17 00:00:00 2001 From: James Date: Wed, 30 Apr 2025 21:22:16 -0700 Subject: [PATCH 1/3] changed nsc ad to next wave dev and students to developers --- src/App.js | 4 +-- src/components/{Student.js => Developer.js} | 4 +-- src/components/Footer.js | 2 +- src/components/Navbar.js | 2 +- src/index.css | 2 +- src/pages/About.js | 28 +++---------------- src/pages/Contact.js | 2 +- .../{StudentsPage.js => DevelopersPage.js} | 14 ++++++---- src/pages/Main.js | 8 +++--- src/pages/PortfolioPage.js | 2 +- 10 files changed, 26 insertions(+), 42 deletions(-) rename src/components/{Student.js => Developer.js} (95%) rename src/pages/{StudentsPage.js => DevelopersPage.js} (77%) diff --git a/src/App.js b/src/App.js index ae92cb9..8229eea 100644 --- a/src/App.js +++ b/src/App.js @@ -4,7 +4,7 @@ import Main from './pages/Main' import Contact from './pages/Contact' import About from './pages/About' import PortfolioPage from './pages/PortfolioPage' -import StudentsPage from './pages/StudentsPage' +import DevelopersPage from './pages/DevelopersPage' import ReactGA from "react-ga4"; function App() { @@ -17,7 +17,7 @@ function App() { } /> } /> } /> - } /> + } /> ); diff --git a/src/components/Student.js b/src/components/Developer.js similarity index 95% rename from src/components/Student.js rename to src/components/Developer.js index 527fa6c..5b5a6cd 100644 --- a/src/components/Student.js +++ b/src/components/Developer.js @@ -3,7 +3,7 @@ import React from 'react'; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faGithub, faLinkedin } from "@fortawesome/free-brands-svg-icons"; -const Student = ({ name, photo, about, email, github, linkedin, role }) => { +const Developer = ({ name, photo, about, email, github, linkedin, role }) => { return (
{name} @@ -79,4 +79,4 @@ const styles = { }, }; -export default Student; +export default Developer; diff --git a/src/components/Footer.js b/src/components/Footer.js index 64550b6..210651f 100644 --- a/src/components/Footer.js +++ b/src/components/Footer.js @@ -46,7 +46,7 @@ const Footer = () => {
  • - +
  • diff --git a/src/components/Navbar.js b/src/components/Navbar.js index 4398f18..f9f0276 100644 --- a/src/components/Navbar.js +++ b/src/components/Navbar.js @@ -20,7 +20,7 @@ const Navbar =()=>{ - +
  • diff --git a/src/index.css b/src/index.css index e12faa7..501374b 100644 --- a/src/index.css +++ b/src/index.css @@ -332,7 +332,7 @@ navbar .students-flexcolumn__h1{ font-size: 3rem; font-weight: 700; - width: 13ch; + width: 14ch; } .students-flexcolumn__student-flex-item{ display: flex; diff --git a/src/pages/About.js b/src/pages/About.js index 58703a3..5e4be35 100644 --- a/src/pages/About.js +++ b/src/pages/About.js @@ -7,7 +7,7 @@ function About() { return ( <> - NSC App Development - About + Next Wave Dev - About @@ -40,7 +40,7 @@ function About() { fontWeight: 600, }} > - North Seattle Application Development + Next Wave Dev
    About Us:



    - Welcome to the NSC College Application Development Program, - where we empower students to create innovative and impactful - solutions in the ever-evolving world of technology. Our program - is dedicated to cultivating the next generation of skilled app - developers, equipping them with the knowledge and hands-on - experience needed to excel in the tech industry. -
    -
    - Through a blend of rigorous coursework, practical project - development, internships and mentorships from industry experts, - and engagement with real-time projects from clients, we foster a - dynamic learning environment that nurtures creativity, critical - thinking, and technical proficiency. Our students engage in - real-world challenges, developing apps that address contemporary - issues and drive technological progress. -
    -
    - At NSC, we believe in the power of education and innovation to - transform lives and communities. Join us to unlock your - potential, gain invaluable experience, and make a meaningful - impact in the digital world. Together, we shape the future of - technology. + 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.
    + diff --git a/src/pages/Contact.js b/src/pages/Contact.js index 8c7b1b3..3666287 100644 --- a/src/pages/Contact.js +++ b/src/pages/Contact.js @@ -9,7 +9,7 @@ function Contact() { return ( <> - NSC App Development - Contact + Next Wave Dev - Contact
    diff --git a/src/pages/StudentsPage.js b/src/pages/DevelopersPage.js similarity index 77% rename from src/pages/StudentsPage.js rename to src/pages/DevelopersPage.js index d695efc..4bbac0e 100644 --- a/src/pages/StudentsPage.js +++ b/src/pages/DevelopersPage.js @@ -2,8 +2,9 @@ import Navbar from "../components/Navbar"; import Footer from "../components/Footer"; import React from "react"; -import Student from "../components/Student"; +import Developer from "../components/Developer"; import data from "../students.json"; +import { Helmet } from "react-helmet"; // const students = [ // { @@ -26,14 +27,17 @@ import data from "../students.json"; const students = data.students; -const StudentsPage = () => { +const DevelopersPage = () => { return (
    + + Next Wave Dev - Developers +
    -

    Our Students

    +

    Our Developers

    {students.map((student, index) => ( - + ))}
    @@ -53,4 +57,4 @@ const styles = { }, }; -export default StudentsPage; +export default DevelopersPage; diff --git a/src/pages/Main.js b/src/pages/Main.js index 17370c3..14064a9 100644 --- a/src/pages/Main.js +++ b/src/pages/Main.js @@ -18,7 +18,7 @@ function Main() { return ( <> - NSC App Development + Next Wave Dev
    @@ -26,10 +26,10 @@ function Main() {

    - North Seattle Application Development + Next Wave Dev

    - Preparing students for immediate employment in a high-demand field + 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.

    @@ -77,7 +77,7 @@ function Main() { /> ))}
    - + Get to know our student developers
    diff --git a/src/pages/PortfolioPage.js b/src/pages/PortfolioPage.js index 156193f..952ebda 100644 --- a/src/pages/PortfolioPage.js +++ b/src/pages/PortfolioPage.js @@ -80,7 +80,7 @@ const PortfolioPage = () => { return (
    - NSC App Development - Portfolio + Next Wave Dev - Portfolio
    From 2aefc88dafa8094f5bffe10d6c0614f1435c66e6 Mon Sep 17 00:00:00 2001 From: James Date: Wed, 30 Apr 2025 21:40:59 -0700 Subject: [PATCH 2/3] changed studentThumbnail to developer Thumbnails --- .../{StudentThumbnail.js => DeveloperThumbnail.js} | 4 ++-- src/pages/Main.js | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) rename src/components/{StudentThumbnail.js => DeveloperThumbnail.js} (61%) diff --git a/src/components/StudentThumbnail.js b/src/components/DeveloperThumbnail.js similarity index 61% rename from src/components/StudentThumbnail.js rename to src/components/DeveloperThumbnail.js index 8d9dd73..8856292 100644 --- a/src/components/StudentThumbnail.js +++ b/src/components/DeveloperThumbnail.js @@ -1,6 +1,6 @@ -const StudentThumbnail = ({fileName, studentName}) =>{ +const DeveloperThumbnail = ({fileName, studentName}) =>{ return ( {"photo ) } -export default StudentThumbnail \ No newline at end of file +export default DeveloperThumbnail \ No newline at end of file diff --git a/src/pages/Main.js b/src/pages/Main.js index 14064a9..82bd9df 100644 --- a/src/pages/Main.js +++ b/src/pages/Main.js @@ -2,7 +2,7 @@ import Navbar from "../components/Navbar"; import { Link } from "react-router-dom"; import belindas from '../images/belindasmobile.png'; import pelletier from '../images/pelletier.png'; -import StudentThumbnail from "../components/StudentThumbnail"; +import DeveloperThumbnail from "../components/DeveloperThumbnail"; import studentData from "../students.json"; import { Helmet } from "react-helmet"; import { FormComponent } from "../components/microComponents/contact/form"; @@ -71,14 +71,14 @@ function Main() {
    {studentDataSlice.map((student, index) => ( - ))}
    - Get to know our student developers + Get to know our developers

    From 417f517516d76ebd61df99db339318abafef28d9 Mon Sep 17 00:00:00 2001 From: James Date: Thu, 1 May 2025 21:15:39 -0700 Subject: [PATCH 3/3] changed the contact email --- src/components/microComponents/contact/form.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/microComponents/contact/form.js b/src/components/microComponents/contact/form.js index d71830a..8cf5c91 100644 --- a/src/components/microComponents/contact/form.js +++ b/src/components/microComponents/contact/form.js @@ -95,7 +95,7 @@ export function FormComponent() { { loading ? "Sending" : "Send" }

    Or contact us by email at - northseattle.appdev@gmail.com or through our phone number at [coming soon] + nextwavedev.org@gmail.com or through our phone number at [coming soon]
    );