link-stack/apps/link/app/(main)/page.tsx
Darren Clarke 43bfdaa1e3 WIP 1
2024-03-16 12:51:56 +01:00

15 lines
489 B
TypeScript

import { Metadata } from "next";
import { Home } from "./_components/Home";
export const metadata: Metadata = {
title: "Link",
};
export default function Page() {
return (
<iframe src="/opensearch/app/dashboards?security_tenant=global#/view/722b74f0-b882-11e8-a6d9-e546fe2bba5f?embed=true&_g=(filters%3A!()%2CrefreshInterval%3A(pause%3A!f%2Cvalue%3A900000)%2Ctime%3A(from%3Anow-7d%2Cto%3Anow))&hide-filter-bar=true"
height="1000"
width="1200"
></iframe>
);
}