From 75a29f4cb767a7782e8e5741a4d4bb837bc06337 Mon Sep 17 00:00:00 2001 From: tyler Date: Wed, 13 Dec 2023 16:10:57 -0500 Subject: [PATCH] Added license; move components to screens --- LICENSE | 21 +++++++++++++++++++ frontend/src/App.jsx | 6 +++--- .../src/{components => screens}/Dashboard.css | 0 .../src/{components => screens}/Dashboard.jsx | 0 .../{components => screens}/Navigation.jsx | 0 .../src/{components => screens}/SignIn.css | 0 .../src/{components => screens}/SignIn.jsx | 0 7 files changed, 24 insertions(+), 3 deletions(-) create mode 100644 LICENSE rename frontend/src/{components => screens}/Dashboard.css (100%) rename frontend/src/{components => screens}/Dashboard.jsx (100%) rename frontend/src/{components => screens}/Navigation.jsx (100%) rename frontend/src/{components => screens}/SignIn.css (100%) rename frontend/src/{components => screens}/SignIn.jsx (100%) diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..d86c037 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Tyler Travis + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index 68bf75f..987b323 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -3,9 +3,9 @@ import { MemoryRouter as Router, Route, Routes, Link } from 'react-router-dom'; import './App.css'; -import { NavSignIn, NavDashboard } from './components/Navigation'; -import Dashboard from './components/Dashboard'; -import SignIn from './components/SignIn'; +import { NavSignIn, NavDashboard } from './screens/Navigation'; +import Dashboard from './screens/Dashboard'; +import SignIn from './screens/SignIn'; function App() { return ( diff --git a/frontend/src/components/Dashboard.css b/frontend/src/screens/Dashboard.css similarity index 100% rename from frontend/src/components/Dashboard.css rename to frontend/src/screens/Dashboard.css diff --git a/frontend/src/components/Dashboard.jsx b/frontend/src/screens/Dashboard.jsx similarity index 100% rename from frontend/src/components/Dashboard.jsx rename to frontend/src/screens/Dashboard.jsx diff --git a/frontend/src/components/Navigation.jsx b/frontend/src/screens/Navigation.jsx similarity index 100% rename from frontend/src/components/Navigation.jsx rename to frontend/src/screens/Navigation.jsx diff --git a/frontend/src/components/SignIn.css b/frontend/src/screens/SignIn.css similarity index 100% rename from frontend/src/components/SignIn.css rename to frontend/src/screens/SignIn.css diff --git a/frontend/src/components/SignIn.jsx b/frontend/src/screens/SignIn.jsx similarity index 100% rename from frontend/src/components/SignIn.jsx rename to frontend/src/screens/SignIn.jsx