Skip to content

Commit

Permalink
Replaced link to github to avoid support questions being misdirected
Browse files Browse the repository at this point in the history
  • Loading branch information
breiler committed May 16, 2024
1 parent fba4f42 commit f14b94d
Show file tree
Hide file tree
Showing 10 changed files with 102 additions and 275 deletions.
247 changes: 3 additions & 244 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { Header } from "./components";
import Page from "./model/Page";
import { Installer, Terminal } from "./pages";
import FileBrowser from "./pages/filebrowser";
import SelectMode from "./pages/selectmode";
import Home from "./pages/home";
import { Connection } from "./panels";
import { isSafari, isFirefox } from "./utils/utils";
import { ControllerService, ControllerStatus } from "./services";
Expand All @@ -18,6 +18,7 @@ import Navigation from "./panels/navigation/Navigation";
import PageTitle from "./components/pagetitle/PageTitle";
import WiFiSettings from "./pages/wifisettings/WiFiSettings";
import Calibrate from "./pages/calibrate/Calibrate";
import Footer from "./components/footer/Footer";

const App = () => {
const navigate = useNavigate();
Expand Down Expand Up @@ -88,7 +89,7 @@ const App = () => {
style={{ marginTop: "32px" }}
>
<Routes>
<Route index element={<SelectMode />} />
<Route index element={<Home />} />
<Route
path="install"
element={
Expand Down Expand Up @@ -121,6 +122,7 @@ const App = () => {
</Container>
)}
</div>
<Footer />
</ControllerServiceContext.Provider>
</>
);
Expand Down
24 changes: 24 additions & 0 deletions src/components/footer/Footer.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
.footer {
background-color: rgb(var(--bs-light-rgb));
border-top: 1px solid var(--bs-border-color-translucent);
padding: 0 0 10px 10px;
font-size: 16px;
width: 100%;
position: fixed;
bottom: 0;

ul {
list-style: none;
}

li {
margin-left: 10px;
margin-right: 10px;
display: inline-block;
align-items: center;
}

a {
text-decoration: none;
}
}
Loading

0 comments on commit f14b94d

Please sign in to comment.