diff --git a/frontend/webapp/app/layout.tsx b/frontend/webapp/app/layout.tsx index efe4c8326..050b0c95c 100644 --- a/frontend/webapp/app/layout.tsx +++ b/frontend/webapp/app/layout.tsx @@ -3,6 +3,7 @@ import React from "react"; import { ThemeProvider } from "styled-components"; import theme from "@/styles/palette"; import { QueryClient, QueryClientProvider } from "react-query"; +import Head from "next/head"; const LAYOUT_STYLE: React.CSSProperties = { margin: 0, @@ -30,6 +31,9 @@ export default function RootLayout({ + + Odigos + {children} diff --git a/frontend/webapp/app/overview/layout.tsx b/frontend/webapp/app/overview/layout.tsx index ba1d6a895..64ff4dd3b 100644 --- a/frontend/webapp/app/overview/layout.tsx +++ b/frontend/webapp/app/overview/layout.tsx @@ -15,7 +15,9 @@ const CHILDREN_STYLE = { width: "100%", height: "93%", }; + export const metadata: Metadata = METADATA; + export default function Layout({ children }: { children: React.ReactNode }) { return (
diff --git a/frontend/webapp/containers/overview/destination/update.destination.flow.tsx b/frontend/webapp/containers/overview/destination/update.destination.flow.tsx index cc06ab91b..66259fe3e 100644 --- a/frontend/webapp/containers/overview/destination/update.destination.flow.tsx +++ b/frontend/webapp/containers/overview/destination/update.destination.flow.tsx @@ -11,7 +11,7 @@ import { useRouter, useSearchParams } from "next/navigation"; import { useNotification } from "@/hooks"; const DEST = "dest"; -export function UpdateDestinationFlow({}) { +export function UpdateDestinationFlow() { const [selectedDestination, setSelectedDestination] = useState(null); const router = useRouter(); diff --git a/frontend/webapp/containers/overview/index.tsx b/frontend/webapp/containers/overview/index.tsx index dc0b77e01..9c57b45c8 100644 --- a/frontend/webapp/containers/overview/index.tsx +++ b/frontend/webapp/containers/overview/index.tsx @@ -4,3 +4,4 @@ export { SourcesContainer } from "./sources/sources"; export { NewDestinationFlow } from "./destination/new.destination.flow"; export { NewDestinationForm } from "./destination/new.destination.form"; export { UpdateDestinationFlow } from "./destination/update.destination.flow"; +