Skip to content

Commit 1ad817b

Browse files
committed
updated content
1 parent e61b016 commit 1ad817b

5 files changed

Lines changed: 16 additions & 14 deletions

File tree

app/course/[module]/[lesson]/page.tsx

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -153,9 +153,7 @@ export default async function LessonPage({ params }: LessonPageProps) {
153153
const moduleLessonIndex = moduleLessons.findIndex(l => l.id === lessonId) + 1
154154
const totalModuleLessons = moduleLessons.length
155155

156-
// Estimate read time (very rough: 200 wpm)
157-
const wordCount = lesson.content.split(/\s+/).length
158-
const readTime = Math.ceil(wordCount / 200)
156+
159157

160158
return (
161159
<div className="mx-auto max-w-4xl space-y-12 pb-20 pt-8 px-6">
@@ -181,10 +179,7 @@ export default async function LessonPage({ params }: LessonPageProps) {
181179
<span className="h-4 w-4 bg-primary/10 rounded-full flex items-center justify-center text-[10px] font-bold text-primary">{moduleLessonIndex}</span>
182180
<span className="font-medium text-foreground">Lesson {moduleLessonIndex} of {totalModuleLessons}</span>
183181
</div>
184-
<span className="text-zinc-300 dark:text-zinc-700"></span>
185-
<div className="flex items-center gap-1.5">
186-
<span>{readTime} min read</span>
187-
</div>
182+
188183
</div>
189184
</div>
190185

app/page.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,12 @@ export default function Home() {
1111
<ModuleGrid />
1212
</main>
1313
<footer className="py-6 md:px-8 md:py-0">
14-
<div className="container flex flex-col items-center justify-between gap-4 md:h-24 md:flex-row">
15-
<p className="text-center text-sm leading-loose text-muted-foreground md:text-left">
14+
<div className="container flex flex-col items-center justify-center gap-2 md:h-24">
15+
<p className="text-center text-sm leading-loose text-muted-foreground">
16+
Team: <span className="font-bold text-foreground">Danny Wang</span><sup>*</sup>, Yadan Luo<sup></sup>, Zhuoxiao Chen, Yan Jiang, Xiangyu Sun, Xuwei Xu, Fengyi Zhang, Zhizhen Zhang.
17+
</p>
18+
<p className="text-center text-xs text-muted-foreground">
19+
* Author, † Coordinator.
1620
</p>
1721
</div>
1822
</footer>

components/layout/navbar.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ export function Navbar() {
1212
return (
1313
<header className="sticky top-0 z-40 w-full border-b bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60">
1414
<div className="container mx-auto flex h-14 items-center pl-4 lg:pl-0"> {/* Adjusted padding */}
15+
<div className="mr-4 flex items-center font-bold">
16+
INFS4205/7205
17+
</div>
1518
<div className="mr-4 hidden md:flex">
1619
<Link href="/" className="mr-6 flex items-center space-x-2 font-bold text-primary lg:hidden">
1720
Antigravity

components/layout/sidebar.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export function Sidebar() {
3131
<div className="fixed inset-y-0 left-0 z-50 hidden w-72 flex-col border-r bg-background lg:flex">
3232
<div className="flex h-14 items-center border-b px-6">
3333
<Link href="/" className="flex items-center font-bold text-lg text-primary">
34-
Agentic Coding
34+
INFS4205/7205 <br></br> Vibe Coding
3535
</Link>
3636
</div>
3737
<div className="px-6 py-6 border-b">
@@ -74,9 +74,7 @@ export function Sidebar() {
7474
<span className={cn("text-sm font-medium", isActive ? "text-primary" : "text-foreground")}>
7575
{lesson.title}
7676
</span>
77-
<span className="text-xs text-muted-foreground">
78-
5 min read
79-
</span>
77+
8078
</div>
8179

8280
<div className="flex h-5 w-5 items-center justify-center">

lib/course-content.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ export const courseData: Module[] = [
3737
- [Antigravity (Google)](https://antigravity.google/).
3838
- [Cursor](https://cursor.com/).
3939
- [OpenAI Codex](https://openai.com/codex/) - built as a standalone agent app, can access major IDEs like VS Code, Antigravity, and Cursor for editing files.
40-
- [VS Code + extensions](https://code.visualstudio.com/) — coding agents like [GitHub Copilot](https://github.com/features/copilot), Codex, Gemini Code are available as within-app extensions.
40+
- [VS Code + extensions](https://code.visualstudio.com/) — coding agents like [GitHub Copilot](https://github.com/features/copilot), Codex, Gemini Code are available as within-app extensions.
41+
42+
Note: The above tools all have free plans available for use.
4143
4244
### Command-line/terminal based:
4345
- [Claude Code](https://code.claude.com/docs/en/overview).

0 commit comments

Comments
 (0)