Skip to content

Commit 11a3ca1

Browse files
committed
feat: add buttons for for different access
1 parent 2c5f070 commit 11a3ca1

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

src/components/LandingPage/HeroSection.tsx

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,27 @@ export default function HeroSection() {
66
<h1 className='text-accent-600 text-lg sm:text-xl font-semibold'>React ChatBotify</h1>
77
<h2 className='text-accent-900 font-bold text-3xl sm:text-5xl'>Theme Gallery</h2>
88
<h3 className='text-accent-600 sm:text-base text-sm text-center w-[250px]'>
9-
Browse, rate and share themes for your chatbot today!
9+
Browse, rate and share themes for your chatbot today and more!
1010
</h3>
11-
<Link className='mt-6' to={"/themes"}>
12-
<button className='bg-accent-900 hover:bg-gradient-to-r hover:from-secondary-900 hover:to-primary-600 transition-colors duration-300 hover:text-accent-900 px-4 py-2 text-lg rounded-lg'>
13-
Explore themes
11+
<div className="flex mt-6 flex-col items-center sm:flex-row gap-2">
12+
13+
14+
<Link to={"/themes"}>
15+
<button className='bg-accent-900 hover:bg-gradient-to-r hover:from-secondary-900 px-2 py-1 text-[14px] hover:to-primary-600 transition-colors duration-300 hover:text-accent-900 sm:px-4 sm:py-2 sm:text-lg rounded-lg'>
16+
Themes
17+
</button>
18+
</Link>
19+
<Link to={"/plugins"}>
20+
<button className='bg-accent-900 hover:bg-gradient-to-r hover:from-secondary-900 px-2 py-1 text-[14px] hover:to-primary-600 transition-colors duration-300 hover:text-accent-900 sm:px-4 sm:py-2 sm:text-lg rounded-lg'>
21+
Plugins
22+
</button>
23+
</Link>
24+
<Link to={"https://react-chatbotify.com"}>
25+
<button className='bg-accent-900 hover:bg-gradient-to-r hover:from-secondary-900 px-2 py-1 text-[14px] hover:to-primary-600 transition-colors duration-300 hover:text-accent-900 sm:px-4 sm:py-2 sm:text-lg rounded-lg'>
26+
Documentation
1427
</button>
1528
</Link>
29+
</div>
1630
</div>
1731
)
1832
}

0 commit comments

Comments
 (0)