diff --git a/extern/feathericons.com/command.svg b/extern/feathericons.com/command.svg new file mode 100644 index 0000000..df2fe83 --- /dev/null +++ b/extern/feathericons.com/command.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/extern/feathericons.com/grid.svg b/extern/feathericons.com/grid.svg new file mode 100644 index 0000000..840f311 --- /dev/null +++ b/extern/feathericons.com/grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/extern/feathericons.com/key.svg b/extern/feathericons.com/key.svg new file mode 100644 index 0000000..22090ed --- /dev/null +++ b/extern/feathericons.com/key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/extern/feathericons.com/lock.svg b/extern/feathericons.com/lock.svg new file mode 100644 index 0000000..66ce699 --- /dev/null +++ b/extern/feathericons.com/lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/extern/feathericons.com/log-in.svg b/extern/feathericons.com/log-in.svg new file mode 100644 index 0000000..da929e9 --- /dev/null +++ b/extern/feathericons.com/log-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/extern/feathericons.com/log-out.svg b/extern/feathericons.com/log-out.svg new file mode 100644 index 0000000..86af166 --- /dev/null +++ b/extern/feathericons.com/log-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/extern/feathericons.com/trash-2.svg b/extern/feathericons.com/trash-2.svg new file mode 100644 index 0000000..4b60e6b --- /dev/null +++ b/extern/feathericons.com/trash-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/extern/feathericons.com/user-minus.svg b/extern/feathericons.com/user-minus.svg new file mode 100644 index 0000000..f4e5f14 --- /dev/null +++ b/extern/feathericons.com/user-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/extern/feathericons.com/user.svg b/extern/feathericons.com/user.svg new file mode 100644 index 0000000..0b77499 --- /dev/null +++ b/extern/feathericons.com/user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/components/DogNavbar.tsx b/src/components/DogNavbar.tsx index ae8c778..b211de2 100644 --- a/src/components/DogNavbar.tsx +++ b/src/components/DogNavbar.tsx @@ -1,6 +1,7 @@ -import { Button, Navbar, Text } from '@mantine/core' +import { Button, Navbar, Text, ThemeIcon } from '@mantine/core' import React, { useState } from 'react' import { Link } from 'react-router-dom' +import { IconGrid, IconUser, IconUserMinus } from '../services/Icons'; import { logOut } from '../services/PhpApi' import Footer2 from './Footer2' @@ -22,17 +23,22 @@ function DogNavbar({hasUser, onLogout}:{hasUser: boolean, onLogout: () => void})