mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-16 18:52:12 +03:00
b3453157e6
♻️ refactor Config Component
11 lines
337 B
TypeScript
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>
|
|
);
|
|
};
|