@@ -41,20 +41,15 @@ export function BlogCarousel() {
4141 return (
4242 < div className = "max-w-8xl mx-auto w-full px-4" >
4343 { /* Section Header */ }
44- < div className = "flex items-center justify-between mb-6 " >
44+ < div className = "blog-section-header " >
4545 < div >
46- < h2 className = "text-2xl font-semibold text-gray-800 dark:text-gray-100" >
47- From the Blog
48- </ h2 >
49- < p className = "text-sm text-black-500 dark:text-gray-400 mt-1" >
46+ < p className = "blog-section-eyebrow" > ✦ Blog</ p >
47+ < h2 className = "blog-section-title" > From the Blog</ h2 >
48+ < p className = "blog-section-subtitle" >
5049 Latest articles from our contributors
5150 </ p >
5251 </ div >
53- < Link
54- to = "/blogs"
55- className = "flex items-center gap-1.5 text-sm font-medium text-indigo-600 border border-indigo-200 px-4 py-2 rounded-lg hover:bg-indigo-50 transition-all dark:text-indigo-400 dark:border-indigo-800 dark:hover:bg-indigo-950"
56- style = { { textDecoration : "none" } }
57- >
52+ < Link to = "/blogs" className = "blog-section-viewall" >
5853 View all →
5954 </ Link >
6055 </ div >
@@ -98,7 +93,7 @@ export function BlogCarousel() {
9893
9994 { /* Carousel Controls */ }
10095 < div className = "mt-8 flex items-center justify-center gap-4" >
101- < CarouselPrevious className = "static h-10 w-10 translate-y-0 border border-indigo -200 transition-all duration-300 hover:scale-110 hover:border-indigo-400 dark:border-indigo-800 dark:hover:border-indigo -600" />
96+ < CarouselPrevious className = "static h-10 w-10 translate-y-0 border border-green -200 transition-all duration-300 hover:scale-110 hover:border-green-500 dark:border-green-900 dark:hover:border-green -600" />
10297
10398 { /* Dot indicators */ }
10499 < div className = "flex items-center gap-2" >
@@ -108,14 +103,14 @@ export function BlogCarousel() {
108103 onClick = { ( ) => api ?. scrollTo ( index ) }
109104 aria-label = { `Go to slide ${ index + 1 } ` }
110105 className = { `h-2 rounded-full transition-all duration-300 ${ current === index + 1
111- ? "w-5 bg-indigo-500 "
106+ ? "w-5 bg-green-600 dark:bg-green-400 "
112107 : "w-2 bg-gray-300 hover:bg-gray-400 dark:bg-gray-600 dark:hover:bg-gray-500"
113108 } `}
114109 />
115110 ) ) }
116111 </ div >
117112
118- < CarouselNext className = "static h-10 w-10 translate-y-0 border border-indigo -200 transition-all duration-300 hover:scale-110 hover:border-indigo-400 dark:border-indigo-800 dark:hover:border-indigo -600" />
113+ < CarouselNext className = "static h-10 w-10 translate-y-0 border border-green -200 transition-all duration-300 hover:scale-110 hover:border-green-500 dark:border-green-900 dark:hover:border-green -600" />
119114 </ div >
120115 </ Carousel >
121116 </ div >
0 commit comments