Loading public/CNAME +1 −1 Original line number Diff line number Diff line travelerschosen.org No newline at end of file www.travelerschosen.org No newline at end of file src/TabMenu.js +5 −1 Original line number Diff line number Diff line import { HashRouter, Routes, Route, useLocation } from "react-router-dom"; import Navbar from "./components/Navbar"; import About from "./about"; import About from "./components/pages/about"; import QueueHelper from "./components/pages/queuehelper"; import Homepage from "./components/pages/homepage"; import CheckpointList from "./components/pages/checkpointlist"; import TwitchBots from "./components/pages/twitchbots"; import FAQ from "./components/pages/FAQ" import NEW from "./components/pages/queuehelperNEW" function App() { return ( Loading @@ -14,9 +16,11 @@ function App() { <Route path="/" element={<Homepage />} /> <Route path="/about" element={<About />} /> <Route path="/queuehelper" element={<QueueHelper />} /> {/*<Route path="/queuehelperNEW" element={<NEW />} />*/} {/* Wrap CheckpointList in a component to force a refresh */} {<Route path="/checkpointlist" element={<CheckpointListWrapper />} />} <Route path="/twitchbots" element={<TwitchBots />} /> <Route path="/faq" element={<FAQ />} /> </Routes> </HashRouter> ); Loading src/about.htmldeleted 100644 → 0 +0 −13 Original line number Diff line number Diff line <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Traveler's Chosen</title> </head> <body> <div id="content"></div> <p>Testing about HTML</p> </body> </html> No newline at end of file src/components/HelperComponents/Bots.jsx 0 → 100644 +10 −0 Original line number Diff line number Diff line import { Buttons } from "./Buttons" export function Bots(props){ return( <div> <h1>This is a test {props.bots} testing</h1> <Buttons></Buttons> </div> ) } No newline at end of file src/components/HelperComponents/Buttons.jsx 0 → 100644 +5 −0 Original line number Diff line number Diff line export function Buttons(props){ return( <button>{props.name}</button> ) } No newline at end of file Loading
public/CNAME +1 −1 Original line number Diff line number Diff line travelerschosen.org No newline at end of file www.travelerschosen.org No newline at end of file
src/TabMenu.js +5 −1 Original line number Diff line number Diff line import { HashRouter, Routes, Route, useLocation } from "react-router-dom"; import Navbar from "./components/Navbar"; import About from "./about"; import About from "./components/pages/about"; import QueueHelper from "./components/pages/queuehelper"; import Homepage from "./components/pages/homepage"; import CheckpointList from "./components/pages/checkpointlist"; import TwitchBots from "./components/pages/twitchbots"; import FAQ from "./components/pages/FAQ" import NEW from "./components/pages/queuehelperNEW" function App() { return ( Loading @@ -14,9 +16,11 @@ function App() { <Route path="/" element={<Homepage />} /> <Route path="/about" element={<About />} /> <Route path="/queuehelper" element={<QueueHelper />} /> {/*<Route path="/queuehelperNEW" element={<NEW />} />*/} {/* Wrap CheckpointList in a component to force a refresh */} {<Route path="/checkpointlist" element={<CheckpointListWrapper />} />} <Route path="/twitchbots" element={<TwitchBots />} /> <Route path="/faq" element={<FAQ />} /> </Routes> </HashRouter> ); Loading
src/about.htmldeleted 100644 → 0 +0 −13 Original line number Diff line number Diff line <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Traveler's Chosen</title> </head> <body> <div id="content"></div> <p>Testing about HTML</p> </body> </html> No newline at end of file
src/components/HelperComponents/Bots.jsx 0 → 100644 +10 −0 Original line number Diff line number Diff line import { Buttons } from "./Buttons" export function Bots(props){ return( <div> <h1>This is a test {props.bots} testing</h1> <Buttons></Buttons> </div> ) } No newline at end of file
src/components/HelperComponents/Buttons.jsx 0 → 100644 +5 −0 Original line number Diff line number Diff line export function Buttons(props){ return( <button>{props.name}</button> ) } No newline at end of file