Files
wkc-website/src/app/layout.tsx
Lucid Kobold 26b4d122f5
All checks were successful
Node.js CI / build (18.x) (pull_request) Successful in 59s
Node.js CI / build (20.x) (pull_request) Successful in 59s
Node.js CI / build (22.x) (pull_request) Successful in 59s
Vercel Preview Deployment / Deploy-Preview (pull_request) Successful in 1m11s
Update logo file name and added logo to metadata for the main page
2025-09-19 01:02:44 -04:00

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>
);
}