Add NotepadTextDashed icon to Documentation button

Updated the Documentation button to include a NotepadTextDashed icon from lucide-react. This change improves visual consistency and enhances user experience by aligning with the icon usage pattern established in the Accueil button.
This commit is contained in:
Mathis H (Avnyr) 2024-09-26 14:56:39 +02:00
parent cb6bd9f409
commit 6523e34328
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

@ -1,7 +1,7 @@
"use client" "use client"
import { useState } from 'react'; import { useState } from 'react';
import { Button } from '../components/ui/button'; import { Button } from '../components/ui/button';
import { Home } from 'lucide-react'; import { Home, NotepadTextDashed } from 'lucide-react';
@ -29,7 +29,10 @@ function SubPageSelector() {
<Home/> <Home/>
Accueil Accueil
</Button> </Button>
<Button>Documentation</Button> <Button>
<NotepadTextDashed />
Documentation
</Button>
</div> </div>
) )
} }