Hello World
-- You can open{" "} - - /docs - {" "} - and see the documentation. -
-diff --git a/apps/web/components/ShinyText/ShinyText.tsx b/apps/web/components/ShinyText/ShinyText.tsx new file mode 100644 index 0000000..5725559 --- /dev/null +++ b/apps/web/components/ShinyText/ShinyText.tsx @@ -0,0 +1,22 @@ + +interface ShinyTextProps { + text: string; + disabled?: boolean; + speed?: number; + className?: string; +} + +const ShinyText = ({ text, disabled = false, speed = 5, className = '' }: ShinyTextProps) => { + const animationDuration = `${speed}s`; + + return ( +
- You can open{" "} - - /docs - {" "} - and see the documentation. -
-+ + Scaffold + {" "} + + production-ready + {" "} + + Better-T projects in seconds + +
+