1
0
Fork 0

Added some finishing touches here and there

This commit is contained in:
Techognito 2025-08-26 18:02:25 +02:00
parent ddd77d9f82
commit 656b1ba417
42 changed files with 9344 additions and 30 deletions

View file

@ -2,6 +2,8 @@ import { APITester } from "../APITester";
import "./index.css";
import { useTranslation, withTranslation, Trans } from 'react-i18next';
import AppBar from './modules/MenuBar';
import logo from "./logo.svg";
import reactLogo from "./react.svg";
@ -9,28 +11,18 @@ import Button from '@mui/material/Button';
import Box from '@mui/material/Box';
import Grid from '@mui/material/Grid';
import VehicleCard from "./modules/VehicleCards";
import YourVehicleList from "./modules/YourVehicles";
import MenuLanguages from "./modules/MenuLanguages";
import StatisticsView from "./modules/StatisticsView"
export function App() {
const { t, i18n } = useTranslation();
return (
<div className="app">
<div className="logo-container">
<img src={logo} alt="Bun Logo" className="logo bun-logo" />
<img src={reactLogo} alt="React Logo" className="logo react-logo" />
</div>
<h1>Bun + React | GarageApp</h1>
<p>
Edit <code>src/App.tsx</code> and save to test HMR
</p>
<h1>{t ('statistics')}</h1>
<AppBar position="static">
</AppBar>
<StatisticsView />
<YourVehicleList></YourVehicleList>
<h1>test</h1>
</div>
);
}