- {t('privacy')}
+ {t('privacy')}
{' • '}
- {t('terms')}
+ {t('terms')}
{' • '}
Extension
diff --git a/inertia/components/layouts/form_layout.tsx b/inertia/components/layouts/form_layout.tsx
index 0a6b65d..ed4b627 100644
--- a/inertia/components/layouts/form_layout.tsx
+++ b/inertia/components/layouts/form_layout.tsx
@@ -1,11 +1,11 @@
import styled from '@emotion/styled';
import { Link } from '@inertiajs/react';
+import { route } from '@izzyjs/route/client';
import { FormEvent, ReactNode } from 'react';
import Button from '~/components/common/form/_button';
import Form from '~/components/common/form/_form';
-import BaseLayout from './_base_layout';
import { appendCollectionId } from '~/lib/navigation';
-import PATHS from '#constants/paths';
+import BaseLayout from './_base_layout';
const FormLayoutStyle = styled.div(({ theme }) => ({
height: 'fit-content',
@@ -49,7 +49,7 @@ const FormLayout = ({
{!disableHomeLink && (
-
+
← Back to home
)}
diff --git a/inertia/components/navbar/navbar.tsx b/inertia/components/navbar/navbar.tsx
index 2c0104b..579a506 100644
--- a/inertia/components/navbar/navbar.tsx
+++ b/inertia/components/navbar/navbar.tsx
@@ -1,5 +1,6 @@
import styled from '@emotion/styled';
import { Link } from '@inertiajs/react';
+import { route } from '@izzyjs/route/client';
import { IoIosLogOut } from 'react-icons/io';
import Dropdown from '~/components/common/dropdown/dropdown';
import { DropdownItemLink } from '~/components/common/dropdown/dropdown_item';
@@ -50,7 +51,7 @@ export default function Navbar() {