mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 05:21:14 +02:00
* chore: asset path helper hook added * chore: detailed and simple empty state component added * chore: section empty state component added * chore: language translation for all empty states * chore: new empty state implementation * improvement: add more translations * improvement: user permissions and workspace draft empty state * chore: update translation structure * chore: inbox empty states * chore: disabled project features empty state * chore: active cycle progress empty state * chore: notification empty state * chore: connections translation * chore: issue comment, relation, bulk delete, and command k empty state translation * chore: project pages empty state and translations * chore: project module and view related empty state * chore: remove project draft related empty state * chore: project cycle, views and archived issues empty state * chore: project cycles related empty state * chore: project settings empty state * chore: profile issue and acitivity empty state * chore: workspace settings realted constants * chore: stickies and home widgets empty state * chore: remove all reference to deprecated empty state component and constnats * chore: add support to ignore theme in resolved asset path hook * chore: minor updates * fix: build errors --------- Co-authored-by: Prateek Shourya <prateekshourya29@gmail.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
42 lines
1.6 KiB
TypeScript
42 lines
1.6 KiB
TypeScript
import { Metadata } from "next";
|
|
// helpers
|
|
import { SPACE_BASE_PATH } from "@plane/constants";
|
|
// styles
|
|
import "@/styles/globals.css";
|
|
// components
|
|
import { AppProvider } from "./provider";
|
|
|
|
export const metadata: Metadata = {
|
|
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",
|
|
openGraph: {
|
|
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",
|
|
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 function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en">
|
|
<head>
|
|
<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`} />
|
|
</head>
|
|
<body>
|
|
<AppProvider>
|
|
<>{children}</>
|
|
</AppProvider>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|