feat: begin redesign and component unification

This commit is contained in:
Aarnav Tale
2025-01-19 15:24:03 +00:00
parent ed0cdbdf4d
commit ec36876b9f
10 changed files with 124 additions and 131 deletions
+13
View 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>
);
}