Skip to content

Commit

Permalink
feat(ui): add favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
naimulcsx committed Nov 22, 2024
1 parent 4e48604 commit 5422881
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion apps/web/app/routes/_dashboard+/app.submissions/route.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Button, Group, Pagination } from '@mantine/core';
import { LoaderFunctionArgs, redirect } from '@remix-run/node';
import { LoaderFunctionArgs, MetaFunction, redirect } from '@remix-run/node';
import { useLoaderData, useNavigate } from '@remix-run/react';
import { desc, eq, sql } from 'drizzle-orm';
import { ArrowLeft02Icon, ArrowRight02Icon } from 'hugeicons-react';
Expand All @@ -12,6 +12,14 @@ import { authenticator } from '~/services/auth.server';

import { SubmissionsTimeline } from './_components/submissions-timeline';

export const meta: MetaFunction = () => {
return [
{
title: 'Submissions',
},
];
};

export const loader = async ({ request }: LoaderFunctionArgs) => {
const user = await authenticator.isAuthenticated(request);
const url = new URL(request.url);
Expand Down
Binary file modified apps/web/public/favicon.ico
Binary file not shown.

0 comments on commit 5422881

Please sign in to comment.