2024-05-14 08:56:54 +00:00
|
|
|
import { Metadata } from "next";
|
|
|
|
// helpers
|
|
|
|
import { ASSET_PREFIX } from "@/helpers/common.helper";
|
2024-05-18 10:52:53 +00:00
|
|
|
// components
|
|
|
|
import { InstanceProvider } from "@/lib/instance-provider";
|
|
|
|
import { StoreProvider } from "@/lib/store-provider";
|
|
|
|
// styles
|
|
|
|
import "@/styles/globals.css";
|
2024-05-22 10:09:28 +00:00
|
|
|
import { ToastProvider } from "@/lib/toast-provider";
|
2024-05-14 08:56:54 +00:00
|
|
|
|
|
|
|
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",
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2024-05-18 10:52:53 +00:00
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
2024-05-14 08:56:54 +00:00
|
|
|
return (
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2024-05-14 15:24:49 +00:00
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href={`${ASSET_PREFIX}/favicon/apple-touch-icon.png`} />
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href={`${ASSET_PREFIX}/favicon/favicon-32x32.png`} />
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href={`${ASSET_PREFIX}/favicon/favicon-16x16.png`} />
|
|
|
|
<link rel="manifest" href={`${ASSET_PREFIX}/site.webmanifest.json`} />
|
|
|
|
<link rel="shortcut icon" href={`${ASSET_PREFIX}/favicon/favicon.ico`} />
|
2024-05-14 08:56:54 +00:00
|
|
|
</head>
|
2024-05-14 20:55:38 +00:00
|
|
|
<body>
|
2024-05-18 10:52:53 +00:00
|
|
|
<StoreProvider>
|
2024-05-22 10:09:28 +00:00
|
|
|
<ToastProvider>
|
|
|
|
<InstanceProvider>{children}</InstanceProvider>
|
|
|
|
</ToastProvider>
|
2024-05-18 10:52:53 +00:00
|
|
|
</StoreProvider>
|
2024-05-14 20:55:38 +00:00
|
|
|
</body>
|
2024-05-14 08:56:54 +00:00
|
|
|
</html>
|
|
|
|
);
|
|
|
|
}
|