File tree Expand file tree Collapse file tree 2 files changed +27
-32
lines changed Expand file tree Collapse file tree 2 files changed +27
-32
lines changed Original file line number Diff line number Diff line change @@ -564,38 +564,6 @@ export default function GetStarted() {
564
564
</ div >
565
565
</ section >
566
566
</ AnimatedSection >
567
-
568
- { /* Final CTA */ }
569
- < AnimatedSection delay = { 3 } >
570
- < div className = { styles . ctaSection } >
571
- < h2 > Ready to Transform Your Career?</ h2 >
572
- < p > Join our community of passionate developers and start building your future today</ p >
573
- < div className = { styles . buttons } >
574
- < Link
575
- className = { `${ styles . button } ${ styles . buttonPrimary } ${ styles . buttonLarge } ` }
576
- to = "/courses/"
577
- >
578
- Get Started for Free
579
- </ Link >
580
- < Link
581
- className = { `${ styles . button } ${ styles . buttonOutline } ${ styles . buttonLarge } ` }
582
- to = "/pricing/"
583
- >
584
- View Pricing
585
- </ Link >
586
- </ div >
587
-
588
- < div className = { styles . trustedBy } >
589
- < span > Trusted by developers at</ span >
590
- < div className = { styles . companies } >
591
- < span > Google</ span >
592
- < span > Microsoft</ span >
593
- < span > Amazon</ span >
594
- < span > Netflix</ span >
595
- </ div >
596
- </ div >
597
- </ div >
598
- </ AnimatedSection >
599
567
</ div >
600
568
</ section >
601
569
</ main >
Original file line number Diff line number Diff line change 651
651
}
652
652
653
653
/* Button Ripple Effect */
654
+ /* Button hover effect */
655
+ .button-hover-effect {
656
+ position : relative;
657
+ overflow : hidden;
658
+ transition : all 0.3s ease;
659
+ }
660
+
661
+ .button-hover-effect ::after {
662
+ content : '' ;
663
+ position : absolute;
664
+ top : 50% ;
665
+ left : 50% ;
666
+ width : 0 ;
667
+ height : 0 ;
668
+ background : rgba (255 , 255 , 255 , 0.1 );
669
+ border-radius : 50% ;
670
+ transform : translate (-50% , -50% );
671
+ transition : width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
672
+ opacity : 0 ;
673
+ }
674
+
675
+ .button-hover-effect : hover ::after {
676
+ width : 300px ;
677
+ height : 300px ;
678
+ opacity : 1 ;
679
+ }
680
+
654
681
.button ::after {
655
682
content : '' ;
656
683
position : absolute;
You can’t perform that action at this time.
0 commit comments