mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
36 lines
1.5 KiB
TypeScript
36 lines
1.5 KiB
TypeScript
|
import { Metadata } from "next";
|
||
|
// styles
|
||
|
import "@/styles/globals.css";
|
||
|
// helpers
|
||
|
import { ASSET_PREFIX } from "@/helpers/common.helper";
|
||
|
|
||
|
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 }) {
|
||
|
return (
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<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`} />
|
||
|
</head>
|
||
|
<body>{children}</body>
|
||
|
</html>
|
||
|
);
|
||
|
}
|