Skip to content

Commit 00cb6d8

Browse files
committed
.
1 parent a15a8b1 commit 00cb6d8

3 files changed

Lines changed: 48 additions & 5 deletions

File tree

app/(default)/(teaching)/AP0001/page.tsx

Lines changed: 41 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,8 +267,7 @@ const scheduleItems: {
267267

268268
export default function Home() {
269269
return (
270-
<div className="w-full">
271-
270+
<div className="w-full text-lg">
272271

273272

274273
<div className="w-full h-96 py-16 px-6 3xl:px-16">
@@ -461,6 +460,46 @@ export default function Home() {
461460

462461

463462

463+
<div className="w-full px-6 flex justify-center mt-24">
464+
<div className="w-full max-w-7xl flex">
465+
<h2 className="text-t1 font-bold">
466+
<Link href="#grading-policy" className="scroll-mt-32 group flex items-center" id="grading-policy">
467+
Grading Policy
468+
<span className="ml-6 hidden group-hover:inline-block size-6 text-foreground">
469+
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor">
470+
<path d="M15.197 3.35462C16.8703 1.67483 19.4476 1.53865 20.9536 3.05046C22.4596 4.56228 22.3239 7.14956 20.6506 8.82935L18.2268 11.2626M10.0464 14C8.54044 12.4882 8.67609 9.90087 10.3494 8.22108L12.5 6.06212" strokeWidth="2.5" strokeLinecap="round"/>
471+
<path d="M13.9536 10C15.4596 11.5118 15.3239 14.0991 13.6506 15.7789L11.2268 18.2121L8.80299 20.6454C7.12969 22.3252 4.55237 22.4613 3.0464 20.9495C1.54043 19.4377 1.67609 16.8504 3.34939 15.1706L5.77323 12.7373" strokeWidth="2.5" strokeLinecap="round"/>
472+
</svg>
473+
</span>
474+
</Link>
475+
</h2>
476+
</div>
477+
</div>
478+
<div className="w-full px-6 flex justify-center mt-12">
479+
<div className="w-full max-w-7xl flex flex-col gap-3">
480+
<div className="rounded-lg border border-sky-200/60 bg-sky-50/80 dark:bg-sky-950/30 dark:border-sky-800/60 px-5 py-5 text-foreground">
481+
<p className="leading-relaxed text-justify mb-4">
482+
The grading policy of this course is as follows:
483+
</p>
484+
<ul className="list-disc list-inside space-y-2 leading-relaxed text-justify">
485+
<li><strong>Participation (10%)</strong></li>
486+
<li><strong>Quiz (10%)</strong></li>
487+
<li>
488+
<strong>Assignment (20%)</strong>: There will be about 2 homework assignments for the first 14 weeks. Each homework contains both a written part and a programming part.
489+
</li>
490+
<li>
491+
<strong>Group Project (60%)</strong>: You can work on a topic of your choice. Open-source data will be provided for your reference. Each team needs to submit a midterm project proposal and give a 10-min presentation. The proposal and presentation should show adequate literature surveys on related topics, and provide good motivations to support the ideas. Each team will deliver a short (15 min) talk in the last week together with a project report and code.
492+
<ul className="list-[circle] list-inside ml-4 mt-2 space-y-1 text-foreground/90">
493+
<li>The final presentation might be in the form of a symposium or mini-conference style, presenting Posters and panels, depending on the future arrangement.</li>
494+
</ul>
495+
</li>
496+
</ul>
497+
</div>
498+
</div>
499+
</div>
500+
501+
502+
464503
<div className="w-full px-6 flex justify-center mt-24">
465504
<div className="w-full max-w-7xl flex">
466505
<h2 className="text-t1 font-bold">

components/app-sidebar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,9 +297,9 @@ export function AppSidebar() {
297297
</CollapsibleTrigger>
298298
<CollapsibleContent>
299299
<SidebarMenuSub>
300-
{/* <Link href="/AP0001" className="p-2 rounded-sm hover:bg-o-blue/3 select-none">
300+
<Link href="/AP0001" className="p-2 rounded-sm hover:bg-o-blue/3 select-none">
301301
SLAI AP0001
302-
</Link> */}
302+
</Link>
303303
<Link href="https://mmlab.hk/CCAI9025" target="_blank" className="p-2 rounded-sm hover:bg-o-blue/3 select-none">
304304
HKU CCAI9025
305305
</Link>

data/navigator-project.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,13 +142,17 @@ export const NavigatorProject: {
142142
id: "prerequisite",
143143
},
144144
{
145-
text: "References",
145+
text: "Materials",
146146
id: "textbook-and-references",
147147
},
148148
{
149149
text: "Tools",
150150
id: "website-and-computing-tools",
151151
},
152+
{
153+
text: "Policy",
154+
id: "grading-policy",
155+
},
152156
{
153157
text: "Schedule",
154158
id: "schedule",

0 commit comments

Comments
 (0)