diff --git a/src/app/(main)/websites/WebsitesDataTable.tsx b/src/app/(main)/websites/WebsitesDataTable.tsx
index 93b1a7c7..c39420f0 100644
--- a/src/app/(main)/websites/WebsitesDataTable.tsx
+++ b/src/app/(main)/websites/WebsitesDataTable.tsx
@@ -2,6 +2,8 @@ import Link from 'next/link';
import { WebsitesTable } from './WebsitesTable';
import { DataGrid } from '@/components/common/DataGrid';
import { useLoginQuery, useNavigation, useUserWebsitesQuery } from '@/components/hooks';
+import { Favicon } from '@/index';
+import { Icon, Row } from '@umami/react-zen';
export function WebsitesDataTable({
userId,
@@ -21,7 +23,12 @@ export function WebsitesDataTable({
const { renderUrl } = useNavigation();
const renderLink = (row: any) => (
- {row.name}
+
+
+
+
+ {row.name}
+
);
return (
diff --git a/src/app/login/LoginForm.tsx b/src/app/login/LoginForm.tsx
index b151b94e..02138985 100644
--- a/src/app/login/LoginForm.tsx
+++ b/src/app/login/LoginForm.tsx
@@ -26,7 +26,7 @@ export function LoginForm() {
setClientAuthToken(token);
setUser(user);
- router.push('/websites');
+ router.push('/');
},
});
};