We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20cfda1 commit bebb46fCopy full SHA for bebb46f
apps/www/src/app/(main)/about/_components/DetailBlock/DetailBlockTitle.tsx
@@ -1,7 +1,5 @@
1
-export const DetailBlockTitle = () => {
2
- return (
3
- <div>
4
- <p>detail block title</p>
5
- </div>
6
- );
+type Props = { children: React.ReactNode };
+
+export const DetailBlockTitle = ({ children }: Props) => {
+ return <h4 className='font-serif text-3xl'>{children}</h4>;
7
};
0 commit comments