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 784c581 commit e10b892Copy full SHA for e10b892
src/app/(frontend)/components/home/Hero.tsx
@@ -66,9 +66,11 @@ const Hero = ({ content }: HeroProps) => {
66
</h1>
67
68
{/* Content */}
69
- <h3 className="text-base md:text-lg w-full md:w-[75%] max-w-208">{content.content}</h3>
+ <h3 className="hidden md:block text-base md:text-lg w-full md:w-[75%] max-w-208">
70
+ {content.content}
71
+ </h3>
72
- <Button variant="beige" size="lg" className="mt-2.5">
73
+ <Button variant="beige" size="lg" className="hidden md:flex mt-2.5">
74
Join Us
75
<ArrowUpRight size={18} />
76
</Button>
0 commit comments