Initial React project
This commit is contained in:
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
4
dist/index.html
vendored
4
dist/index.html
vendored
@@ -7,8 +7,8 @@
|
|||||||
<title>arbejd-react</title>
|
<title>arbejd-react</title>
|
||||||
<script src="https://cdn.tailwindcss.com"></script>
|
<script src="https://cdn.tailwindcss.com"></script>
|
||||||
<script src="https://code.iconify.design/iconify-icon/1.0.7/iconify-icon.min.js"></script>
|
<script src="https://code.iconify.design/iconify-icon/1.0.7/iconify-icon.min.js"></script>
|
||||||
<script type="module" crossorigin src="/assets/index-BTQ7aOhU.js"></script>
|
<script type="module" crossorigin src="/assets/index-Drgr1jYo.js"></script>
|
||||||
<link rel="stylesheet" crossorigin href="/assets/index-DCi6r_ld.css">
|
<link rel="stylesheet" crossorigin href="/assets/index-BQiLnvLH.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="root"></div>
|
<div id="root"></div>
|
||||||
|
|||||||
@@ -214,7 +214,6 @@ export function CvPage({ onLogout, onNavigate, onToggleTheme, theme }: CvPagePro
|
|||||||
<div className="cv-head">
|
<div className="cv-head">
|
||||||
<div>
|
<div>
|
||||||
<h1>Dit CV</h1>
|
<h1>Dit CV</h1>
|
||||||
<p>Handter dine faglige oplysninger, erfaringer og uddannelser.</p>
|
|
||||||
</div>
|
</div>
|
||||||
<button type="button" className="cv-edit-btn"><PenLine size={16} strokeWidth={1.8} /> Rediger CV</button>
|
<button type="button" className="cv-edit-btn"><PenLine size={16} strokeWidth={1.8} /> Rediger CV</button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import { useEffect, useMemo, useState } from 'react';
|
import { useEffect, useMemo, useState } from 'react';
|
||||||
import {
|
import {
|
||||||
|
ArrowLeft,
|
||||||
ArrowRight,
|
ArrowRight,
|
||||||
Calendar,
|
Calendar,
|
||||||
CheckCircle2,
|
CheckCircle2,
|
||||||
@@ -147,21 +148,14 @@ export function SimulatorEvaluationPage({
|
|||||||
onLogout={onLogout}
|
onLogout={onLogout}
|
||||||
theme={theme}
|
theme={theme}
|
||||||
onToggleTheme={onToggleTheme}
|
onToggleTheme={onToggleTheme}
|
||||||
actions={(
|
|
||||||
<div className="sim-eval-top-actions">
|
|
||||||
<button type="button" className="sim-eval-back-btn" onClick={onBack}>Tilbage</button>
|
|
||||||
<div className="sim-eval-crumb-pill">
|
|
||||||
<Gamepad2 size={14} strokeWidth={1.8} />
|
|
||||||
<span>Simulator</span>
|
|
||||||
<ArrowRight size={13} strokeWidth={1.8} />
|
|
||||||
<strong>Evaluering</strong>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<div className="sim-eval-wrap">
|
<div className="sim-eval-wrap">
|
||||||
<header className="sim-eval-head">
|
<header className="sim-eval-head">
|
||||||
|
<button type="button" className="sim-eval-back-btn sim-eval-back-inline" onClick={() => onNavigate('simulator')}>
|
||||||
|
<ArrowLeft size={14} strokeWidth={1.8} />
|
||||||
|
<span>Tilbage til Simulator</span>
|
||||||
|
</button>
|
||||||
<div className="sim-eval-label">
|
<div className="sim-eval-label">
|
||||||
<ClipboardList size={14} strokeWidth={1.8} />
|
<ClipboardList size={14} strokeWidth={1.8} />
|
||||||
<span>{data?.evaluationLabel ?? 'Interview Feedback'}</span>
|
<span>{data?.evaluationLabel ?? 'Interview Feedback'}</span>
|
||||||
|
|||||||
@@ -13,7 +13,6 @@ import {
|
|||||||
Mic,
|
Mic,
|
||||||
MoreHorizontal,
|
MoreHorizontal,
|
||||||
PauseCircle,
|
PauseCircle,
|
||||||
Play,
|
|
||||||
PlayCircle,
|
PlayCircle,
|
||||||
Radio,
|
Radio,
|
||||||
StopCircle,
|
StopCircle,
|
||||||
@@ -463,9 +462,7 @@ export function SimulatorPage({ onLogout, onNavigate, onOpenEvaluation, onToggle
|
|||||||
>
|
>
|
||||||
Se evaluering <ArrowRight size={14} strokeWidth={1.8} />
|
Se evaluering <ArrowRight size={14} strokeWidth={1.8} />
|
||||||
</button>
|
</button>
|
||||||
) : (
|
) : null}
|
||||||
<button type="button" className="sim-link-btn">Fortsæt <Play size={14} strokeWidth={1.8} /></button>
|
|
||||||
)}
|
|
||||||
</div>
|
</div>
|
||||||
</article>
|
</article>
|
||||||
))}
|
))}
|
||||||
|
|||||||
@@ -13,6 +13,9 @@
|
|||||||
background: rgba(255, 255, 255, 0.65);
|
background: rgba(255, 255, 255, 0.65);
|
||||||
border-radius: 999px;
|
border-radius: 999px;
|
||||||
padding: 8px 12px;
|
padding: 8px 12px;
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 6px;
|
||||||
color: #6b7280;
|
color: #6b7280;
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
@@ -51,6 +54,12 @@
|
|||||||
margin-bottom: 24px;
|
margin-bottom: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sim-eval-back-inline {
|
||||||
|
display: flex;
|
||||||
|
width: fit-content;
|
||||||
|
margin-bottom: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
.sim-eval-label {
|
.sim-eval-label {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|||||||
Reference in New Issue
Block a user