feat: icon and name
This commit is contained in:
parent
070956ba1a
commit
443aafb9bb
@ -1,13 +1,16 @@
|
|||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
<link rel="icon" type="image/svg+xml" href="/banquise.svg" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>Vite + React + TS</title>
|
<title>La Banquise</title>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div id="root"></div>
|
<div id="root"></div>
|
||||||
<script type="module" src="/src/main.tsx"></script>
|
<script type="module" src="/src/main.tsx"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
30
public/banquise.svg
Normal file
30
public/banquise.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 8.8 KiB |
11
src/type/InstanceType.ts
Normal file
11
src/type/InstanceType.ts
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
import { Tp } from "./TpType";
|
||||||
|
import { User } from "./UserType";
|
||||||
|
|
||||||
|
export interface Instance {
|
||||||
|
id: number;
|
||||||
|
name: string;
|
||||||
|
ssh: string;
|
||||||
|
pwd: string;
|
||||||
|
user: User;
|
||||||
|
tp: Tp;
|
||||||
|
}
|
8
src/type/TpType.ts
Normal file
8
src/type/TpType.ts
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
export interface Tp {
|
||||||
|
id: number;
|
||||||
|
name: string;
|
||||||
|
description: string;
|
||||||
|
pdfLink: string;
|
||||||
|
respo: string;
|
||||||
|
date: string;
|
||||||
|
}
|
7
src/type/UserType.ts
Normal file
7
src/type/UserType.ts
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
import { Instance } from "./InstanceType";
|
||||||
|
|
||||||
|
export interface User {
|
||||||
|
id: number;
|
||||||
|
name: string;
|
||||||
|
instances: Instance[];
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user