Initial React project

This commit is contained in:
Johan
2026-03-08 16:41:02 +01:00
parent adf5491fdc
commit f983a9a132
7 changed files with 24 additions and 25 deletions

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
View File

@@ -7,8 +7,8 @@
<title>arbejd-react</title>
<script src="https://cdn.tailwindcss.com"></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>
<link rel="stylesheet" crossorigin href="/assets/index-DCi6r_ld.css">
<script type="module" crossorigin src="/assets/index-Drgr1jYo.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-BQiLnvLH.css">
</head>
<body>
<div id="root"></div>

View File

@@ -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>

View File

@@ -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>

View File

@@ -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>
))}

View File

@@ -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;