Skip to content

Commit 5374120

Browse files
committed
chore: update import paths
1 parent f4c5b98 commit 5374120

File tree

6 files changed

+187
-179
lines changed

6 files changed

+187
-179
lines changed

src/routes/+page.svelte

Lines changed: 20 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
<script lang="ts">
22
import { onMount } from "svelte";
3-
import type { Arc } from "$lib/types/themis"
3+
import type { Arc } from "$lib/types/themis";
44
import { savedCourses } from "$lib/stores/themisStores";
5-
6-
function countModules(arcs: Arc[]) :number {
5+
6+
function countModules(arcs: Arc[]): number {
77
let total = 0;
8-
arcs.forEach((arc) => { total += arc.modules.length })
8+
arcs.forEach((arc) => {
9+
total += arc.modules.length;
10+
});
911
return total;
1012
}
1113
1214
onMount(() => {
13-
console.log("Welcome to Pedagogue");
15+
console.log("Welcome to Rhea");
1416
});
1517
</script>
1618

@@ -33,10 +35,12 @@
3335
<!-- TODO: create separate WorkflowCard component -->
3436
<!-- TODO: address a11y issues from workflow cards -->
3537
<div class="workflow-cards">
36-
<a href="/theia" class="workflow-card theia-card">
38+
<a href="/theia/resume" class="workflow-card theia-card">
3739
<img src="/theia/icon.png" alt="Theia" class="card-icon" />
3840
<h2>Theia</h2>
39-
<p>Upload and manage previously generated course structures and modules.</p>
41+
<p>
42+
Upload and manage previously generated course structures and modules.
43+
</p>
4044
<div class="card-features">
4145
<span>✓ Upload course JSON</span>
4246
<span>✓ Resume workflows</span>
@@ -48,8 +52,10 @@
4852
<a href="/themis/generate" class="workflow-card themis-card">
4953
<img src="/themis/icon.png" alt="Themis" class="card-icon" />
5054
<h2>Themis</h2>
51-
<p>Create a complete multi-week course with interconnected modules and
52-
learning progressions.</p>
55+
<p>
56+
Create a complete multi-week course with interconnected modules and
57+
learning progressions.
58+
</p>
5359
<div class="card-features">
5460
<span>✓ Multiple modules</span>
5561
<span>✓ Course structure</span>
@@ -71,8 +77,10 @@
7177
<a href="/metis/update" class="workflow-card metis-card">
7278
<img src="/metis/icon.png" alt="Metis" class="card-icon" />
7379
<h2>Metis</h2>
74-
<p>Create a standalone module specification with projects, skills, and
75-
research topics.</p>
80+
<p>
81+
Create a standalone module specification with projects, skills, and
82+
research topics.
83+
</p>
7684
<div class="card-features">
7785
<span>✓ Project briefs</span>
7886
<span>✓ Learning objectives</span>
@@ -320,7 +328,7 @@
320328
}
321329
322330
.course-item:hover {
323-
border-color: #D7B130;
331+
border-color: #d7b130;
324332
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
325333
}
326334

src/routes/metis/update/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@
269269

270270
<svelte:head>
271271
<title>Metis • Module Designer</title>
272-
<link rel="icon" href="favicon.ico" />
272+
<link rel="icon" href="favicons/favicon.ico" />
273273
</svelte:head>
274274

275275
<div id="metis-container" class="container">

src/routes/tethys/wip/+page.svelte

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<svelte:head>
55
<title>Tethys • Arc Designer</title>
6-
<link rel="icon" href="favicon.ico" />
6+
<link rel="icon" href="favicons/favicon.ico" />
77
</svelte:head>
88

99
<div id="tethys-container" class="container">
@@ -14,13 +14,11 @@
1414
</div>
1515
<p>AI-powered Arc design for peer-led courses</p>
1616
</header>
17-
17+
1818
<div class="tethys-workflow">
19-
<nav class="tethys-steps">
20-
</nav>
19+
<nav class="tethys-steps"></nav>
2120

22-
<main class="tethys-content">
23-
</main>
21+
<main class="tethys-content"></main>
2422
</div>
2523
</div>
2624

src/routes/theia/+page.svelte

Lines changed: 0 additions & 159 deletions
This file was deleted.

0 commit comments

Comments
 (0)