mirror of
https://github.com/supabase/supabase.git
synced 2026-05-08 09:50:33 -04:00
56de26fe22
This PR migrates the whole monorepo to use Tailwind v4: - Removed `@tailwindcss/container-queries` plugin since it's included by default in v4, - Bump all instances of Tailwind to v4. Made minimal changes to the shared config to remove non-supported features (`alpha` mentions), - Migrate all apps to be compatible with v4 configs, - Fix the `typography.css` import in 3 apps, - Add missing rules which were included by default in v3, - Run `pnpm dlx @tailwindcss/upgrade` on all apps, which renames a lot of classes - Rename all misnamed classes according to https://tailwindcss.com/docs/upgrade-guide#renamed-utilities in all apps. --------- Co-authored-by: Jordi Enric <jordi.err@gmail.com>
101 lines
2.7 KiB
TypeScript
101 lines
2.7 KiB
TypeScript
import 'swiper/css'
|
|
|
|
import { useRef } from 'react'
|
|
import { ArrowLeft, ArrowRight } from 'lucide-react'
|
|
import { Button, cn } from 'ui'
|
|
import Link from 'next/link'
|
|
import { CTA } from '~/types/common'
|
|
|
|
import ExampleCard from '~/components/ExampleCard'
|
|
import { Swiper, SwiperSlide } from 'swiper/react'
|
|
// import Swiper core and required modules
|
|
import SwiperCore from 'swiper'
|
|
import { Navigation, Pagination } from 'swiper/modules'
|
|
|
|
// install Swiper modules
|
|
SwiperCore.use([Navigation, Pagination])
|
|
|
|
const ExamplesCarousel = ({
|
|
title,
|
|
cta,
|
|
examples,
|
|
}: {
|
|
title: string | React.ReactNode
|
|
cta: CTA
|
|
examples: any[]
|
|
}) => {
|
|
const prevRef = useRef(null)
|
|
const nextRef = useRef(null)
|
|
|
|
return (
|
|
<div id="examples" className="container">
|
|
<div className="w-full flex flex-col lg:flex-row justify-between items-start lg:items-end gap-4">
|
|
<h3 className="h2 mb-0!">{title}</h3>
|
|
{cta && (
|
|
<Button asChild type="default" size="tiny">
|
|
<Link href={cta.href}>{cta.label}</Link>
|
|
</Button>
|
|
)}
|
|
</div>
|
|
<div className="mt-8 lg:mt-10">
|
|
<Swiper
|
|
style={{ overflow: 'visible' }}
|
|
loop={true}
|
|
initialSlide={0}
|
|
spaceBetween={10}
|
|
slidesPerView={3}
|
|
autoplay={{
|
|
delay: 2400,
|
|
}}
|
|
speed={300}
|
|
navigation={{
|
|
prevEl: prevRef.current,
|
|
nextEl: nextRef.current,
|
|
}}
|
|
onInit={(swiper: any) => {
|
|
swiper.params.navigation.prevEl = prevRef.current
|
|
swiper.params.navigation.nextEl = nextRef.current
|
|
swiper.navigation.update()
|
|
}}
|
|
breakpoints={{
|
|
320: {
|
|
slidesPerView: 1.1,
|
|
spaceBetween: 10,
|
|
},
|
|
720: {
|
|
slidesPerView: 2,
|
|
spaceBetween: 10,
|
|
},
|
|
920: {
|
|
slidesPerView: 3,
|
|
spaceBetween: 10,
|
|
},
|
|
1024: {
|
|
slidesPerView: 3,
|
|
spaceBetween: 20,
|
|
},
|
|
}}
|
|
>
|
|
{Object.values(examples).map((example: any, i: number) => {
|
|
return (
|
|
<SwiperSlide key={example.title}>
|
|
<ExampleCard i={i} {...example} />
|
|
</SwiperSlide>
|
|
)
|
|
})}
|
|
</Swiper>
|
|
<div className="container mx-auto mt-3 hidden flex-row justify-between md:flex">
|
|
<div ref={prevRef} className={cn('p ml-4 cursor-pointer')}>
|
|
<ArrowLeft />
|
|
</div>
|
|
<div ref={nextRef} className="p mr-4 cursor-pointer">
|
|
<ArrowRight />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default ExamplesCarousel
|