diff --git a/apps/web/src/components/Layout.tsx b/apps/web/src/components/Layout.tsx index eef834cd..21444cf0 100644 --- a/apps/web/src/components/Layout.tsx +++ b/apps/web/src/components/Layout.tsx @@ -15,6 +15,7 @@ interface LayoutProps { title?: string; children: React.ReactNode; classNameShareButton?: string; + page?: "home" | "locationsettings" | "settings" | "contact"; } /* If you use this component, @@ -24,6 +25,7 @@ const Layout: React.FC = ({ title, children, classNameShareButton, + page, }) => { const [navbarOpen, setNavbarOpen] = useState(false); @@ -135,51 +137,51 @@ const Layout: React.FC = ({
-
diff --git a/apps/web/src/pages/contact/index.tsx b/apps/web/src/pages/contact/index.tsx index b1219bb6..39530961 100644 --- a/apps/web/src/pages/contact/index.tsx +++ b/apps/web/src/pages/contact/index.tsx @@ -67,6 +67,7 @@ const ContactUs = () => {

diff --git a/apps/web/src/pages/home/index.tsx b/apps/web/src/pages/home/index.tsx index c48900c8..c1b6e5b9 100644 --- a/apps/web/src/pages/home/index.tsx +++ b/apps/web/src/pages/home/index.tsx @@ -275,7 +275,7 @@ const InternalHome = observer(() => { ]; return ( - +

{activeCity$.name.get()} diff --git a/apps/web/src/pages/locationsettings/index.tsx b/apps/web/src/pages/locationsettings/index.tsx index 745fda10..5c67bcc1 100644 --- a/apps/web/src/pages/locationsettings/index.tsx +++ b/apps/web/src/pages/locationsettings/index.tsx @@ -153,7 +153,10 @@ const LocationSettings = observer(() => { return ( <> - +

{translationCommon("menu locations")} diff --git a/apps/web/src/pages/settings/index.tsx b/apps/web/src/pages/settings/index.tsx index 6b38e96a..36ab36ce 100644 --- a/apps/web/src/pages/settings/index.tsx +++ b/apps/web/src/pages/settings/index.tsx @@ -33,7 +33,7 @@ const Settings = observer(() => { return ( <> - +

{translationCommon("menu settings")}