Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion client/index.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap" rel="stylesheet">
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="src/assets/logo.png"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dashboard | Trackify</title>
<title>Dashboard | M I R A G E</title>
</head>
<body>
<div id="root"></div>
Expand Down
8 changes: 4 additions & 4 deletions client/src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import React from 'react';
import { Route, Routes } from 'react-router-dom';

import "./index.css"
import { Sidebar, Navbar } from './components';
import { ShipmentDetails, CreateCampaign, Home, Profile } from './pages';
import { ShipmentDetails, Home, Profile, CreateShipment } from './pages';

const App = () => {
return (
<div className="relative sm:-8 p-4 bg-[#FFFFFF] min-h-screen flex flex-row">
<div className="relative sm:-8 p-4 bg-gradient-to-b from-gray-900 to-slate-700 min-h-screen flex flex-row">
<div className="sm:flex hidden mr-10 relative">
<Sidebar />
</div>
Expand All @@ -17,7 +17,7 @@ const App = () => {
<Routes>
<Route path="/" element={<Home />} />
<Route path="/profile" element={<Profile />} />
<Route path="/create-shipment" element={<CreateCampaign />} />
<Route path="/create-shipment" element={<CreateShipment />} />
<Route path="/shipment-details/:id" element={<ShipmentDetails />} />
</Routes>
</div>
Expand Down
2 changes: 1 addition & 1 deletion client/src/assets/create-shipment.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions client/src/assets/dashboard.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 3 additions & 6 deletions client/src/assets/loader.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions client/src/assets/logout.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion client/src/assets/menu.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions client/src/assets/profile.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion client/src/assets/sun.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading