From 2a7a401ec600a7c1f5920e68f371752e7f66c624 Mon Sep 17 00:00:00 2001 From: JoeyThompson10 <108598229+JoeyThompson10@users.noreply.github.com> Date: Sun, 5 Nov 2023 15:57:46 -0500 Subject: [PATCH] Deletes SplashPage and modifies HomePage --- index.html | 2 +- src/App.jsx | 6 +---- src/components/About.jsx | 48 +++++++++++++++++++++++++++++++++++++ src/headerfooter/Footer.jsx | 1 - src/headerfooter/Header.jsx | 3 +-- src/pages/AboutPage.jsx | 20 ---------------- src/pages/HomePage.jsx | 27 ++++++++++++++------- src/pages/SplashPage.jsx | 30 ----------------------- 8 files changed, 70 insertions(+), 67 deletions(-) create mode 100644 src/components/About.jsx delete mode 100644 src/pages/AboutPage.jsx delete mode 100644 src/pages/SplashPage.jsx diff --git a/index.html b/index.html index 0c589ec..3acab90 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@ - Vite + React + Spectrum Analyzer - Team 5
diff --git a/src/App.jsx b/src/App.jsx index 09dd0f3..ef21870 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -2,9 +2,7 @@ import React from 'react'; import { BrowserRouter as Router, Route, Routes } from 'react-router-dom'; import Header from './headerfooter/Header'; import Footer from './headerfooter/Footer'; -import SplashPage from './pages/SplashPage'; import HomePage from './pages/HomePage'; -import AboutPage from './pages/AboutPage'; import ContactPage from './pages/ContactPage'; import TermsPage from './pages/TermsPage'; import './css/global.css'; @@ -15,9 +13,7 @@ function App() {
- } /> - } /> - } /> + } /> } /> } /> diff --git a/src/components/About.jsx b/src/components/About.jsx new file mode 100644 index 0000000..716a115 --- /dev/null +++ b/src/components/About.jsx @@ -0,0 +1,48 @@ +import React from 'react'; + +const About = () => { + return ( +
+

About the Spectrum Analyzer Analysis Tool

+

Purpose:

+

+ The Spectrum Analyzer Analysis Tool is a capstone creation, dedicated to + advancing the analysis of frequency spectrums within video feeds. Our tool + automates the detection and measurement of signal waveforms to support + the 402 SWEG's data analysis requirements. +

+

How It Works:

+

+ By employing computer vision techniques and leveraging the OpenCV library, + this software tool processes video frames to identify grid lines and signal + patterns, calculates waveform properties, and extracts vital information like + amplitude and frequency details. +

+

Functionality:

+
    +
  • Grid Detection: Identifies grid patterns for reference scaling.
  • +
  • Wave Analysis: Measures waveform properties against the detected grid.
  • +
  • Data Extraction: Outputs analysis results to CSV files for further study.
  • +
+

Benefits:

+

+ This tool is engineered to enhance efficiency and accuracy in spectrum analysis + and to make complex signal analysis more accessible for both educational and + professional use. +

+

Future Directions:

+

+ We are committed to continuously improving the tool by adding real-time analysis + capabilities, expanding the detectable signal range, and refining the user interface. +

+

Team:

+

+ This project is brought to you by Masood Afzal, Ashly Altman, Brooke Ebetino, + Tyler Halley, and Joey Thompson, under the mentorship of Dr. Yan Huang. +

+

For inquiries or more information, please contact us.

+
+ ); +}; + +export default About; diff --git a/src/headerfooter/Footer.jsx b/src/headerfooter/Footer.jsx index bd03d8f..aa1f4e7 100644 --- a/src/headerfooter/Footer.jsx +++ b/src/headerfooter/Footer.jsx @@ -6,7 +6,6 @@ function Footer() { return (