import "@mantine/notifications/styles.css";
import MyNotification from "../components/MyNotification";
export default async function NotificationsPage() {
const data = await getData();
return (
<div>
<title>{data.title}</title>
<h1>{data.headline}</h1>
<MyNotification />
</div>
);
}
const getData = async () => {
const data = {
title: "Ext / Notifications",
headline: "Extensions / Notifications",
};
return data;
};