77 lines
2.3 KiB
TypeScript
77 lines
2.3 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { redirect } from "next/navigation";
|
|
import { PreloadTerminalData } from "@/components/landing/PreloadTerminalData";
|
|
import { InstitutionalLandingPage } from "@/components/landing/InstitutionalLandingPage";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "PolyWeather | Institutional Weather Signal Intelligence",
|
|
description:
|
|
"PolyWeather is a paid professional weather-signal intelligence terminal with METAR evidence, DEB forecast blending, and AI decision cards.",
|
|
other: {
|
|
preconnect: "https://api.polyweather.top",
|
|
},
|
|
};
|
|
|
|
export default async function HomePage({
|
|
searchParams,
|
|
}: {
|
|
searchParams: Promise<Record<string, string | string[] | undefined>>;
|
|
}) {
|
|
const params = await searchParams;
|
|
const code = params.code;
|
|
if (typeof code === "string" && code.trim()) {
|
|
const usp = new URLSearchParams();
|
|
for (const [key, value] of Object.entries(params)) {
|
|
if (value != null) {
|
|
if (Array.isArray(value)) {
|
|
for (const v of value) usp.append(key, v);
|
|
} else {
|
|
usp.set(key, value);
|
|
}
|
|
}
|
|
}
|
|
const qs = usp.toString();
|
|
redirect(`/auth/callback${qs ? `?${qs}` : ""}`);
|
|
}
|
|
const jsonLd = {
|
|
"@context": "https://schema.org",
|
|
"@type": "WebApplication",
|
|
name: "PolyWeather",
|
|
description:
|
|
"Paid professional weather-signal intelligence terminal with METAR evidence, DEB forecast blending, and AI decision cards.",
|
|
url: "https://polyweather.top",
|
|
applicationCategory: "BusinessApplication",
|
|
operatingSystem: "Web",
|
|
offers: [
|
|
{
|
|
"@type": "Offer",
|
|
name: "Pro monthly",
|
|
price: "29.90",
|
|
priceCurrency: "USD",
|
|
description:
|
|
"Pro subscription for 30 days. Referral users pay 20.00 USD-equivalent USDC for the first month.",
|
|
availability: "https://schema.org/InStock",
|
|
},
|
|
{
|
|
"@type": "Offer",
|
|
name: "Pro quarterly",
|
|
price: "79.90",
|
|
priceCurrency: "USD",
|
|
description: "Pro subscription for 90 days.",
|
|
availability: "https://schema.org/InStock",
|
|
},
|
|
],
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<script
|
|
type="application/ld+json"
|
|
dangerouslySetInnerHTML={{ __html: JSON.stringify(jsonLd) }}
|
|
/>
|
|
<PreloadTerminalData />
|
|
<InstitutionalLandingPage />
|
|
</>
|
|
);
|
|
}
|