feat: handling SSR on home page
This commit is contained in:
16
components/home/action-section.tsx
Normal file
16
components/home/action-section.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import { Button } from "@/components/ui/button";
|
||||
import Link from "next/link";
|
||||
|
||||
export function ActionSection() {
|
||||
return (
|
||||
<div className="flex justify-center mt-12">
|
||||
<Button
|
||||
asChild
|
||||
size="lg"
|
||||
className="bg-blue-500 hover:bg-blue-600 text-white px-8 py-3 rounded-xl"
|
||||
>
|
||||
<Link href="/evaluation">Continuer l'évaluation</Link>
|
||||
</Button>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user