blob: b9b7f3ca5aaa45ad919675447bb15c21b1843a62 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import React, { PropsWithChildren } from "react";
export const Title: React.FC<PropsWithChildren> = ({ children }): JSX.Element => {
return (
<h1 className="py-4 text-5xl font-bold text-center text-transparent bg-gradient-to-t bg-clip-text from-zinc-100/60 to-white">
{children}
</h1>
);
};
|