2024-05-14 14:26:54 +05:30
|
|
|
import { Metadata } from "next";
|
|
|
|
|
// helpers
|
2024-12-04 14:24:53 +05:30
|
|
|
import { SPACE_BASE_PATH } from "@plane/constants";
|
2024-05-18 16:22:53 +05:30
|
|
|
// styles
|
|
|
|
|
import "@/styles/globals.css";
|
2024-12-04 14:24:53 +05:30
|
|
|
// components
|
|
|
|
|
import { AppProvider } from "./provider";
|
2024-05-14 14:26:54 +05:30
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
2024-06-28 11:52:46 +05:30
|
|
|
title: "Plane Publish | Make your Plane boards public with one-click",
|
|
|
|
|
description: "Plane Publish is a customer feedback management tool built on top of plane.so",
|
2024-05-14 14:26:54 +05:30
|
|
|
openGraph: {
|
2024-06-28 11:52:46 +05:30
|
|
|
title: "Plane Publish | Make your Plane boards public with one-click",
|
|
|
|
|
description: "Plane Publish is a customer feedback management tool built on top of plane.so",
|
2024-05-14 14:26:54 +05:30
|
|
|
url: "https://sites.plane.so/",
|
|
|
|
|
},
|
|
|
|
|
keywords:
|
2025-02-06 20:41:31 +05:30
|
|
|
"software development, customer feedback, software, accelerate, code management, release management, project management, work item tracking, agile, scrum, kanban, collaboration",
|
2024-05-14 14:26:54 +05:30
|
|
|
twitter: {
|
|
|
|
|
site: "@planepowers",
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
2024-05-18 16:22:53 +05:30
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
2024-05-14 14:26:54 +05:30
|
|
|
return (
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
2024-12-04 14:24:53 +05:30
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href={`${SPACE_BASE_PATH}/favicon/apple-touch-icon.png`} />
|
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href={`${SPACE_BASE_PATH}/favicon/favicon-32x32.png`} />
|
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href={`${SPACE_BASE_PATH}/favicon/favicon-16x16.png`} />
|
|
|
|
|
<link rel="manifest" href={`${SPACE_BASE_PATH}/site.webmanifest.json`} />
|
|
|
|
|
<link rel="shortcut icon" href={`${SPACE_BASE_PATH}/favicon/favicon.ico`} />
|
2025-03-11 16:52:25 +05:30
|
|
|
<meta name="robots" content="noindex, nofollow" />
|
2024-05-14 14:26:54 +05:30
|
|
|
</head>
|
2024-05-15 02:25:38 +05:30
|
|
|
<body>
|
2025-07-02 15:36:06 +05:30
|
|
|
<div id="editor-portal" />
|
2025-02-06 20:41:31 +05:30
|
|
|
<AppProvider>
|
|
|
|
|
<>{children}</>
|
|
|
|
|
</AppProvider>
|
2024-05-15 02:25:38 +05:30
|
|
|
</body>
|
2024-05-14 14:26:54 +05:30
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|