12 lines
216 B
TypeScript
12 lines
216 B
TypeScript
|
|
import { Metadata } from 'next'
|
||
|
|
|
||
|
|
import ClusterInfo from './components/cluster'
|
||
|
|
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: 'Cluster Information'
|
||
|
|
}
|
||
|
|
|
||
|
|
export default function IndexPage() {
|
||
|
|
return <ClusterInfo />
|
||
|
|
}
|