11import { createFileRoute } from '@tanstack/react-router'
22import { createServerFn } from '@tanstack/react-start'
33import { seo } from '~/utils/seo'
4- import { HiOutlineMail } from 'react-icons/hi'
54import {
65 LuUsers ,
76 LuVideo ,
@@ -18,6 +17,7 @@ import { allMaintainers, Maintainer } from '~/libraries/maintainers'
1817import { MaintainerCard } from '~/components/MaintainerCard'
1918import { shuffleWithSeed } from '~/utils/utils'
2019import { CheckCircleIcon } from '~/components/icons/CheckCircleIcon'
20+ import { Mail } from 'lucide-react'
2121
2222// Server function to get the seed based on 10-second intervals
2323// This ensures consistency between server and client
@@ -74,7 +74,7 @@ function WorkshopsPage() {
7474 href = "mailto:workshops@tanstack.com?subject=Workshop%20Inquiry"
7575 className = "inline-flex items-center gap-3 px-8 py-4 bg-linear-to-r from-blue-600 to-purple-600 text-white rounded-lg font-black text-lg hover:from-blue-700 hover:to-purple-700 transition-all duration-200 hover:shadow-xl hover:scale-105"
7676 >
77- < HiOutlineMail className = "w-6 h-6" />
77+ < Mail className = "w-6 h-6" />
7878 Get a Quote
7979 </ a >
8080 </ header >
@@ -235,7 +235,7 @@ function WorkshopsPage() {
235235 href = "mailto:workshops@tanstack.com?subject=Workshop%20Inquiry"
236236 className = "inline-flex items-center gap-3 px-8 py-4 bg-linear-to-r from-blue-600 to-purple-600 text-white rounded-lg font-black text-lg hover:from-blue-700 hover:to-purple-700 transition-all duration-200 hover:shadow-xl hover:scale-105"
237237 >
238- < HiOutlineMail className = "w-6 h-6" />
238+ < Mail className = "w-6 h-6" />
239239 Get a Quote
240240 </ a >
241241 </ div >
@@ -317,7 +317,7 @@ function WorkshopsPage() {
317317 href = "mailto:workshops@tanstack.com?subject=Workshop%20Questions"
318318 className = "inline-flex items-center gap-3 px-6 py-3 bg-blue-600 text-white rounded-lg font-medium hover:bg-blue-700 transition-all duration-200 hover:shadow-lg"
319319 >
320- < HiOutlineMail className = "w-5 h-5" />
320+ < Mail className = "w-5 h-5" />
321321 Ask Us Anything
322322 </ a >
323323 </ div >
@@ -420,7 +420,7 @@ function WorkshopsPage() {
420420 href = "mailto:workshops@tanstack.com?subject=Workshop%20Inquiry"
421421 className = "inline-flex items-center gap-3 px-8 py-4 bg-linear-to-r from-green-600 to-cyan-600 text-white rounded-lg font-black text-lg hover:from-green-700 hover:to-cyan-700 transition-all duration-200 hover:shadow-xl hover:scale-105"
422422 >
423- < HiOutlineMail className = "w-6 h-6" />
423+ < Mail className = "w-6 h-6" />
424424 Get Started Today
425425 </ a >
426426 </ div >
@@ -566,7 +566,7 @@ function InstructorsSection({ instructors }: { instructors: Maintainer[] }) {
566566 href = "mailto:workshops@tanstack.com?subject=Workshop%20Inquiry& body = I 'm interested in learning more about your workshop instructors and availability."
567567 className="inline-flex items-center gap-2 px-6 py-3 bg-blue-600 text-white rounded-lg font-medium hover:bg-blue-700 transition-all duration-200 hover:shadow-lg"
568568 >
569- <HiOutlineMail className="w-5 h-5" />
569+ <Mail className="w-5 h-5" />
570570 Learn More About Our Instructors
571571 </a>
572572 </div>
0 commit comments