22 lines
657 B
TypeScript
22 lines
657 B
TypeScript
import React from "react";
|
|
import { Provider } from "@/components/ui/provider";
|
|
|
|
export default function RootLayout(props: { children: React.ReactNode }) {
|
|
const { children } = props;
|
|
return (
|
|
<html suppressHydrationWarning>
|
|
<link rel="icon" href="/images/logo/favicon/favicon.ico" sizes="any" />
|
|
<link
|
|
rel="apple-touch-icon"
|
|
href="/images/logo/favicon/apple-touch-icon.png"
|
|
sizes="any"
|
|
/>
|
|
<meta property="og:image" content="/images/logo/new-logo.png" />
|
|
<meta property="og:image:type" content="image/png" />
|
|
<body>
|
|
<Provider>{children}</Provider>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|