Skip to content

Commit

Permalink
logistic regression page
Browse files Browse the repository at this point in the history
  • Loading branch information
ThisAbhinav committed Nov 22, 2023
1 parent 1f1d020 commit 3ad11b8
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ export default function Home() {
return (
<div className="flex flex-col justify-center items-center gap-5">
<Link
href="/linear_regression_workshop"
href="/workshops"
className="underline text-sm md:text-xl text-center"
>
Linear Regression Workshop
Workshops
</Link>
<Link
href="/ml_bytes"
Expand Down
File renamed without changes.
21 changes: 21 additions & 0 deletions app/workshops/logistic_regression/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import Link from "next/link";

export default function Page() {
return (
<div className="flex flex-col justify-center items-center gap-5">
<Link href="" className="underline text-sm md:text-xl text-center">
Get the Notebook
</Link>
<Link
href="/presentations/Logistic_Regression_Workshop_Presentation.pdf"
className="underline text-sm md:text-xl text-center"
target="_blank"
>
Download the Presentation
</Link>
<Link href="" className="underline text-sm md:text-xl text-center">
Post Workshop Content
</Link>
</div>
);
}
19 changes: 19 additions & 0 deletions app/workshops/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import Link from "next/link";
export default function Workshop() {
return (
<div className="flex flex-col justify-center items-center gap-5">
<Link
href="/workshops/linear_regression"
className="underline text-sm md:text-xl text-center"
>
Linear Regression
</Link>
<Link
href="/workshops/logistic_regression"
className="underline text-sm md:text-xl text-center"
>
Logistic Regression
</Link>
</div>
);
}

1 comment on commit 3ad11b8

@vercel
Copy link

@vercel vercel bot commented on 3ad11b8 Nov 22, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.