xhivart-mirror/src/app/page.tsx

13 lines
363 B
TypeScript

import { getArtworks, getEvents, getServices } from '@/lib/data';
import HomeClient from './home-client';
export const dynamic = 'force-dynamic';
export default function Home() {
const artworks = getArtworks();
const events = getEvents();
const services = getServices();
return <HomeClient artworks={artworks} events={events} services={services} />;
}