diff --git a/frontend/src/components/Applications.js b/frontend/src/pages/ApplicationsPage.jsx similarity index 54% rename from frontend/src/components/Applications.js rename to frontend/src/pages/ApplicationsPage.jsx index fe57f2e..9bb439e 100644 --- a/frontend/src/components/Applications.js +++ b/frontend/src/pages/ApplicationsPage.jsx @@ -1,7 +1,7 @@ import React from 'react'; -const Applications = () => { +const ApplicationsPage = () => { return
Applications Placeholder
; }; -export default Applications; +export default ApplicationsPage; diff --git a/frontend/src/components/Baseline.jsx b/frontend/src/pages/BaselinePage.jsx similarity index 98% rename from frontend/src/components/Baseline.jsx rename to frontend/src/pages/BaselinePage.jsx index e63a002..82e94a1 100644 --- a/frontend/src/components/Baseline.jsx +++ b/frontend/src/pages/BaselinePage.jsx @@ -1,7 +1,7 @@ import React, { useEffect, useState } from "react"; import axios from "axios"; -const Baseline = () => { +const BaselinePage = () => { const [data, setData] = useState([]); useEffect(() => { @@ -77,4 +77,4 @@ const Baseline = () => { ); }; -export default Baseline; +export default BaselinePage; diff --git a/frontend/src/components/CSVProcessing.js b/frontend/src/pages/CSVProcessingPage.jsx similarity index 54% rename from frontend/src/components/CSVProcessing.js rename to frontend/src/pages/CSVProcessingPage.jsx index 7c62e6d..6d554f5 100644 --- a/frontend/src/components/CSVProcessing.js +++ b/frontend/src/pages/CSVProcessingPage.jsx @@ -1,7 +1,7 @@ import React from 'react'; -const CSVProcessing = () => { +const CSVProcessingPage = () => { return
CSV Processing Placeholder
; }; -export default CSVProcessing; +export default CSVProcessingPage; diff --git a/frontend/src/components/HomePage.js b/frontend/src/pages/HomePage.jsx similarity index 100% rename from frontend/src/components/HomePage.js rename to frontend/src/pages/HomePage.jsx diff --git a/frontend/src/components/Networking.js b/frontend/src/pages/NetworkingPage.jsx similarity index 55% rename from frontend/src/components/Networking.js rename to frontend/src/pages/NetworkingPage.jsx index 0892a14..ed8441a 100644 --- a/frontend/src/components/Networking.js +++ b/frontend/src/pages/NetworkingPage.jsx @@ -1,7 +1,7 @@ import React from 'react'; -const Networking = () => { +const NetworkingPage = () => { return
Networking Placeholder
; }; -export default Networking; +export default NetworkingPage; diff --git a/frontend/src/components/securitytools.jsx b/frontend/src/pages/SecurityToolsPage.jsx similarity index 100% rename from frontend/src/components/securitytools.jsx rename to frontend/src/pages/SecurityToolsPage.jsx diff --git a/frontend/src/components/SettingsConfig.js b/frontend/src/pages/SettingsConfigPage.jsx similarity index 54% rename from frontend/src/components/SettingsConfig.js rename to frontend/src/pages/SettingsConfigPage.jsx index c699255..089b53c 100644 --- a/frontend/src/components/SettingsConfig.js +++ b/frontend/src/pages/SettingsConfigPage.jsx @@ -1,7 +1,7 @@ import React from 'react'; -const SettingsConfig = () => { +const SettingsConfigPage = () => { return
Settings & Config Placeholder
; }; -export default SettingsConfig; +export default SettingsConfigPage; diff --git a/frontend/src/components/VirusTotal.js b/frontend/src/pages/VirusTotalPage.jsx similarity index 56% rename from frontend/src/components/VirusTotal.js rename to frontend/src/pages/VirusTotalPage.jsx index 67f8ea4..0e50b97 100644 --- a/frontend/src/components/VirusTotal.js +++ b/frontend/src/pages/VirusTotalPage.jsx @@ -1,7 +1,7 @@ import React from 'react'; -const VirusTotal = () => { +const VirusTotalPage = () => { return
Virus Total Placeholder
; }; -export default VirusTotal; +export default VirusTotalPage;