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/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/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/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]
    ); 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) => ( - + ))}