Improve the appearance of the call-to-action button on the website

Update hero section button style in `client/src/components/home/hero-section.tsx` to round corners and add a subtle emboss effect using boxShadow and textShadow.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 88cd88e4-2dbe-4df6-8c8a-7e38f13ef1ec
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/af8dabca-e746-4e53-9c29-d8d4d9cf30f5/837e6158-5012-4323-ac21-684126a84fe6.jpg
This commit is contained in:
JeffEmmett 2025-05-19 19:44:16 +00:00
parent e3b374277f
commit dc912936a4
1 changed files with 6 additions and 1 deletions

View File

@ -18,7 +18,12 @@ export function HeroSection() {
<Link
href="/classes"
className="inline-block bg-teal text-white font-medium py-3 px-10 hover:bg-opacity-90 transition duration-300"
className="inline-block bg-teal text-white font-medium py-3 px-10 rounded-full hover:bg-opacity-90 transition duration-300"
style={{
boxShadow: "0 4px 6px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.08)",
textShadow: "0 1px 2px rgba(0, 0, 0, 0.1)",
transform: "translateY(-1px)"
}}
>
Try a Free Class
</Link>