feat: begin redesign and component unification
This commit is contained in:
parent
ed0cdbdf4d
commit
ec36876b9f
10 changed files with 124 additions and 131 deletions
13
app/components/Title.tsx
Normal file
13
app/components/Title.tsx
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import React from 'react';
|
||||
|
||||
export interface TitleProps {
|
||||
children: React.ReactNode;
|
||||
}
|
||||
|
||||
export default function Title({ children }: TitleProps) {
|
||||
return (
|
||||
<h3 className="text-2xl font-bold mb-6">
|
||||
{children}
|
||||
</h3>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue