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

10 lines
212 B
TypeScript
Raw Normal View History

2025-07-29 05:15:33 +02:00
import OutilsPage from "@/components/OutilsPage";
import { Metadata } from "next";
export const metadata: Metadata = {
title: "Outils | Aystone",
};
export default function Page() {
return <OutilsPage />;
}