feat/course
Arik Chakma 1 month ago
parent 5529d023dd
commit ac6aab1fe1
  1. 42
      src/components/Course/CertificateView.tsx
  2. 3
      src/pages/learn/[courseId]/certificate.astro

@ -0,0 +1,42 @@
import { useState } from 'react';
import { Rating } from '../Rating/Rating';
type CertificateViewProps = {
currentCourseId: string;
};
export function CertificateView(props: CertificateViewProps) {
const { currentCourseId } = props;
const [rating, setRating] = useState(0);
return (
<div className="mx-auto flex max-w-md flex-col items-center justify-center">
<div className="flex flex-col items-center">
<h1 className="text-4xl font-semibold">Congratulations!</h1>
<p className="mt-3 text-center text-lg text-zinc-200">
You finished the course. Download the completion certificate below and
share it with the world.
</p>
<button>
<a
target="_blank"
rel="noreferrer"
className="mt-8 block rounded-full bg-zinc-700 px-6 py-2.5 font-medium text-white"
>
Download Certificate
</a>
</button>
</div>
<div className="mt-24 flex flex-col items-center gap-3">
<Rating
rating={rating}
onRatingChange={(rating) => setRating(rating)}
starSize={36}
/>
<span>Rate your experience</span>
</div>
</div>
);
}

@ -1,4 +1,5 @@
--- ---
import { CertificateView } from '../../../components/Course/CertificateView';
import { CourseLayout } from '../../../components/Course/CourseLayout'; import { CourseLayout } from '../../../components/Course/CourseLayout';
import SkeletonLayout from '../../../layouts/SkeletonLayout.astro'; import SkeletonLayout from '../../../layouts/SkeletonLayout.astro';
import { import {
@ -60,6 +61,6 @@ const { course } = Astro.props;
chapters={course.chapters} chapters={course.chapters}
client:load client:load
> >
Hello <CertificateView currentCourseId={courseId} client:load />
</CourseLayout> </CourseLayout>
</SkeletonLayout> </SkeletonLayout>

Loading…
Cancel
Save