websites/app/annuaire/page.tsx

20 lines
377 B
TypeScript
Raw Normal View History

2024-05-06 22:35:25 +02:00
import { Metadata } from "next";
import { Header, Hero, RegionList } from "@/components/index";
export const metadata: Metadata = {
title: "Annuaire",
description: "L'annuaire collaboratif des professionnels de la santé",
};
export default function DashboardPage() {
return (
<>
<Header />
<Hero />
<RegionList />
<hr></hr>
</>
);
}