10 lines
212 B
TypeScript
10 lines
212 B
TypeScript
import OutilsPage from "@/components/OutilsPage";
|
|
import { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Outils | Aystone",
|
|
};
|
|
|
|
export default function Page() {
|
|
return <OutilsPage />;
|
|
} |