quivr/frontend/app/config/components/ConfigTitle.tsx
Zineb El Bachiri b3453157e6
🐛 handle click on done in Config (#304)
♻️ refactor Config Component
2023-06-12 13:15:03 +02:00

11 lines
337 B
TypeScript

export const ConfigTitle = (): JSX.Element => {
return (
<div className="flex flex-col items-center justify-center">
<h1 className="text-3xl font-bold text-center">Configuration</h1>
<h2 className="opacity-50 text-center">
Here, you can choose your model, set your credentials...
</h2>
</div>
);
};