Initial React project
This commit is contained in:
@@ -214,7 +214,6 @@ export function CvPage({ onLogout, onNavigate, onToggleTheme, theme }: CvPagePro
|
||||
<div className="cv-head">
|
||||
<div>
|
||||
<h1>Dit CV</h1>
|
||||
<p>Handter dine faglige oplysninger, erfaringer og uddannelser.</p>
|
||||
</div>
|
||||
<button type="button" className="cv-edit-btn"><PenLine size={16} strokeWidth={1.8} /> Rediger CV</button>
|
||||
</div>
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import { useEffect, useMemo, useState } from 'react';
|
||||
import {
|
||||
ArrowLeft,
|
||||
ArrowRight,
|
||||
Calendar,
|
||||
CheckCircle2,
|
||||
@@ -147,21 +148,14 @@ export function SimulatorEvaluationPage({
|
||||
onLogout={onLogout}
|
||||
theme={theme}
|
||||
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">
|
||||
<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">
|
||||
<ClipboardList size={14} strokeWidth={1.8} />
|
||||
<span>{data?.evaluationLabel ?? 'Interview Feedback'}</span>
|
||||
|
||||
@@ -13,7 +13,6 @@ import {
|
||||
Mic,
|
||||
MoreHorizontal,
|
||||
PauseCircle,
|
||||
Play,
|
||||
PlayCircle,
|
||||
Radio,
|
||||
StopCircle,
|
||||
@@ -463,9 +462,7 @@ export function SimulatorPage({ onLogout, onNavigate, onOpenEvaluation, onToggle
|
||||
>
|
||||
Se evaluering <ArrowRight size={14} strokeWidth={1.8} />
|
||||
</button>
|
||||
) : (
|
||||
<button type="button" className="sim-link-btn">Fortsæt <Play size={14} strokeWidth={1.8} /></button>
|
||||
)}
|
||||
) : null}
|
||||
</div>
|
||||
</article>
|
||||
))}
|
||||
|
||||
@@ -13,6 +13,9 @@
|
||||
background: rgba(255, 255, 255, 0.65);
|
||||
border-radius: 999px;
|
||||
padding: 8px 12px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
color: #6b7280;
|
||||
font-size: 0.8rem;
|
||||
font-weight: 500;
|
||||
@@ -51,6 +54,12 @@
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.sim-eval-back-inline {
|
||||
display: flex;
|
||||
width: fit-content;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.sim-eval-label {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
|
||||
Reference in New Issue
Block a user