Skip to content

Commit

Permalink
Remove coursel arrows
Browse files Browse the repository at this point in the history
  • Loading branch information
xmliszt committed Sep 17, 2024
1 parent 325c0fc commit a3b9233
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions app/outgoing-links-carousel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,7 @@ import Image from 'next/image';
import Link from 'next/link';
import Autoplay from 'embla-carousel-autoplay';

import {
Carousel,
CarouselContent,
CarouselItem,
CarouselNext,
CarouselPrevious,
} from '@/components/ui/carousel';
import { Carousel, CarouselContent, CarouselItem } from '@/components/ui/carousel';

export function OutgoingLinksCarousel() {
return (
Expand All @@ -23,7 +17,6 @@ export function OutgoingLinksCarousel() {
]}
className='flex w-full items-center justify-center py-4'
>
<CarouselPrevious className='!relative !left-0 !top-0 !flex !aspect-square !translate-x-0 !translate-y-0 !rounded-lg !border-none' />
<CarouselContent>
<CarouselItem key={1} className='flex items-center justify-center'>
<a
Expand Down Expand Up @@ -88,7 +81,6 @@ export function OutgoingLinksCarousel() {
</Link>
</CarouselItem>
</CarouselContent>
<CarouselNext className='!relative !right-0 !top-0 !flex !aspect-square !translate-x-0 !translate-y-0 !rounded-lg !border-none' />
</Carousel>
);
}

0 comments on commit a3b9233

Please sign in to comment.