diff --git a/components/layout/Layout.tsx b/components/layout/Layout.tsx index cd314812a..a04ddca43 100644 --- a/components/layout/Layout.tsx +++ b/components/layout/Layout.tsx @@ -1,5 +1,6 @@ import React, { PropsWithChildren } from "react"; import { Navbar } from "./Navbar"; +import { dependencies, version } from "../../package.json"; export const Layout: React.FC = ({ children }) => { return ( @@ -12,23 +13,14 @@ export const Layout: React.FC = ({ children }) => { {children} - {/* ); };