Skip to content

Commit

Permalink
chore:favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
SySagar committed Sep 24, 2023
1 parent d56556d commit 63b0980
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 3 deletions.
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-elastic-carousel": "^0.11.5",
"react-helmet": "^6.1.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.10.1",
"react-lottie": "^1.2.3",
Expand All @@ -47,6 +48,7 @@
"@types/js-cookie": "^3.0.3",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/react-helmet": "^6.1.6",
"@types/react-lottie": "^1.2.6",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.61.0",
Expand Down
18 changes: 17 additions & 1 deletion public/vite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion src/layout/headeroptions/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default function Header() {
<Stack
className="navbar"
width={"100%"}
minHeight={"40px"}
minHeight={"50px"}
justifyContent={"center"}
sx={
{
Expand All @@ -19,6 +19,7 @@ export default function Header() {
<Stack
className="navbar-container"
paddingX={3}
paddingY={1}
direction={"row"}
alignItems={"center"}
>
Expand Down
3 changes: 2 additions & 1 deletion src/layout/headeroptions/HeaderActions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -252,8 +252,9 @@ const UnauthorizedActions = () => {
</Button>
<Button component={Link}
sx={{color:'#474747',variant:'outlined',border:'1px solid #474747',
background:'rgba(245, 245, 245, 0.5)',
'&:hover' : {
background:'rgba(71, 71, 71, 0.3)',
background:'rgba(245, 245, 235, 0.9)',
}
}}
to={"/auth/register"}
Expand Down
4 changes: 4 additions & 0 deletions src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@ import App from "./App.tsx";
import "./index.css";
import Apptheme from "./theme/Apptheme.tsx";
import { Toaster } from "react-hot-toast";
import { Helmet } from 'react-helmet';

ReactDOM.createRoot(document.getElementById("root")!).render(
<Apptheme>
<Helmet>
<title>Pensdown</title>
</Helmet>
<Toaster position="top-right" />
<App />
</Apptheme>
Expand Down

0 comments on commit 63b0980

Please sign in to comment.