feat: Introduce a new Next.js modern frontend with a history API route and include legacy static assets.

This commit is contained in:
2569718930@qq.com
2026-03-06 09:14:58 +08:00
parent af1d8ab4ed
commit b308709edb
6 changed files with 2958 additions and 3 deletions
+9 -3
View File
@@ -1,5 +1,11 @@
import { PolyWeatherDashboard } from "@/components/polyweather-dashboard";
export default function HomePage() {
return <PolyWeatherDashboard />;
return (
<main className="h-screen w-screen overflow-hidden bg-black">
<iframe
title="PolyWeather Legacy Dashboard"
src="/legacy/index.html"
className="h-full w-full border-0"
/>
</main>
);
}