mirror of
https://github.com/jcreek/AutomatedAssessmentFeedbackAgent.git
synced 2026-07-12 18:43:49 +00:00
feat(*): Add initial scaffolding
This commit is contained in:
@@ -0,0 +1,10 @@
|
|||||||
|
<nav class="bg-gray-900 text-white px-4 py-3 flex items-center justify-between">
|
||||||
|
<div class="font-bold text-lg">
|
||||||
|
<a href="/">Assessment Agent</a>
|
||||||
|
</div>
|
||||||
|
<ul class="flex gap-6">
|
||||||
|
<li><a href="/upload" class="hover:underline">Upload</a></li>
|
||||||
|
<li><a href="/results" class="hover:underline">Results</a></li>
|
||||||
|
<li><a href="/about" class="hover:underline">About</a></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
@@ -1,7 +1,11 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import '../app.css';
|
import '../app.css';
|
||||||
|
import '$lib/components/Navbar.svelte';
|
||||||
|
import Navbar from '$lib/components/Navbar.svelte';
|
||||||
|
|
||||||
let { children } = $props();
|
let { children } = $props();
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<Navbar />
|
||||||
|
|
||||||
{@render children()}
|
{@render children()}
|
||||||
|
|||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<section class="max-w-xl mx-auto py-12">
|
||||||
|
<h1 class="text-2xl font-bold mb-4">About This Project</h1>
|
||||||
|
<p class="mb-6">This AI-powered agent was created for the Microsoft Hack Together: AI Agents Hackathon 2025. It automates assessment and feedback for teachers using advanced AI and agentic workflows.</p>
|
||||||
|
<ul class="list-disc list-inside">
|
||||||
|
<li>Built by Josh Creek</li>
|
||||||
|
<li><a class="text-blue-600 underline" href="https://jcreek.co.uk" target="_blank">jcreek.co.uk</a></li>
|
||||||
|
<li><a class="text-blue-600 underline" href="https://microsoft.github.io/AI_Agents_Hackathon/" target="_blank">Hackathon Home</a></li>
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
<script lang="ts">
|
||||||
|
// Results logic will go here
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<section class="max-w-xl mx-auto py-12">
|
||||||
|
<h1 class="text-2xl font-bold mb-4">Assessment Results</h1>
|
||||||
|
<p class="mb-6">View detailed feedback and recommendations for each student submission.</p>
|
||||||
|
<!-- Results table or cards will go here -->
|
||||||
|
<div class="border rounded p-6 text-gray-500">No results yet. Upload submissions to see feedback here.</div>
|
||||||
|
</section>
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
<script lang="ts">
|
||||||
|
// Upload logic will go here
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<section class="max-w-xl mx-auto py-12">
|
||||||
|
<h1 class="text-2xl font-bold mb-4">Upload Student Submissions</h1>
|
||||||
|
<p class="mb-6">Upload student assignments for instant AI-powered assessment and feedback.</p>
|
||||||
|
<form>
|
||||||
|
<!-- File or text input UI will go here -->
|
||||||
|
<button class="btn btn-primary mt-4" type="submit" disabled>Upload (Coming soon)</button>
|
||||||
|
</form>
|
||||||
|
</section>
|
||||||
Reference in New Issue
Block a user