import { Metadata } from "next"; // styles import "@/styles/globals.css"; // components import { InstanceNotReady, InstanceFailureView } from "@/components/instance"; // helpers import { ASSET_PREFIX } from "@/helpers/common.helper"; // lib import { AppProvider } from "@/lib/app-providers"; // services import { InstanceService } from "@/services/instance.service"; const instanceService = new InstanceService(); export const metadata: Metadata = { title: "Plane Deploy | Make your Plane boards public with one-click", description: "Plane Deploy is a customer feedback management tool built on top of plane.so", openGraph: { title: "Plane Deploy | Make your Plane boards public with one-click", description: "Plane Deploy is a customer feedback management tool built on top of plane.so", url: "https://sites.plane.so/", }, keywords: "software development, customer feedback, software, accelerate, code management, release management, project management, issue tracking, agile, scrum, kanban, collaboration", twitter: { site: "@planepowers", }, }; export default async function RootLayout({ children }: { children: React.ReactNode }) { const instanceDetails = await instanceService.getInstanceInfo().catch(() => undefined); return (