Files
aystone-manager/app/ads/page.tsx
T

11 lines
315 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import AdsGalleryClient from "@/components/AdsGalleryClient";
import { getAdFiles } from "@/lib/getAds";
export const metadata = {
title: "Galerie des publicités Aystone",
};
export default async function AdsGalleryPage() {
const files = await getAdFiles();
return <AdsGalleryClient files={files} />;
}