Fix, all good, hola

This commit is contained in:
jorgemike
2025-04-03 21:05:11 -06:00
parent 8b3d695d1d
commit 2aac2488fd
26 changed files with 886 additions and 595 deletions
+10
View File
@@ -0,0 +1,10 @@
'use client';
import dynamic from 'next/dynamic';
import React from 'react';
const Carousel = dynamic(() => import('@/components/carousel'), {
ssr: false,
});
export default function ClientCarousel() {
return <Carousel />;
}