Files
new-api-analytics/app/portal/layout.tsx
shangzy 1b5977a420 feat: add hidden /portal page for SinoCode iframe embedding
Full-screen landing page with glassmorphism cards linking to monitoring
(8018), docs (8017), and analytics (8019). Sidebar is conditionally
hidden on the portal route. Supports dark/light themes and i18n.
2026-04-02 19:30:32 +08:00

15 lines
313 B
TypeScript

import type { Metadata } from "next";
export const metadata: Metadata = {
title: "SinoCode — 智能 API 网关平台",
description: "SinoCode intelligent API gateway platform portal",
};
export default function PortalLayout({
children,
}: {
children: React.ReactNode;
}) {
return <>{children}</>;
}