24 lines
661 B
TypeScript
24 lines
661 B
TypeScript
import type { Metadata } from "next";
|
|
import dynamic from "next/dynamic";
|
|
import { DashboardShellSkeleton } from "@/components/dashboard/DashboardShellSkeleton";
|
|
|
|
const ScanTerminalDashboard = dynamic(
|
|
() =>
|
|
import("@/components/dashboard/ScanTerminalDashboard").then(
|
|
(mod) => mod.ScanTerminalDashboard,
|
|
),
|
|
{
|
|
loading: () => <DashboardShellSkeleton />,
|
|
},
|
|
);
|
|
|
|
export const metadata: Metadata = {
|
|
title: "PolyWeather Terminal | Paid Product",
|
|
description:
|
|
"Paid PolyWeather decision terminal for weather-signal analysis and city decision cards.",
|
|
};
|
|
|
|
export default function TerminalPage() {
|
|
return <ScanTerminalDashboard />;
|
|
}
|