Skip to content

Commit

Permalink
Moved imported deps from public to root-level dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
vinayh committed Feb 28, 2024
1 parent bc7142a commit dde96b7
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 4 deletions.
File renamed without changes
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" type="image/svg+xml" href="/assets/favicon.svg" />
<meta
name="viewport"
content="minimum-scale=1, initial-scale=1, width=device-width, user-scalable=no"
Expand Down
2 changes: 1 addition & 1 deletion src/Calendar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {

import { UserProfile, Entry, useUserStore, ProfileStatus } from "./user"
import { EntryForm } from "./EntryForm"
import "/public/styles/calendar.css"
import "/styles/calendar.css"

export type EntryInfo = {
date: string
Expand Down
2 changes: 1 addition & 1 deletion src/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import "@mantine/notifications/styles.css"

import { auth, useUserStore } from "./user.ts"
import { Navbar } from "./Navbar.tsx"
import logo from "/public/logo.png"
import logo from "/assets/logo.png"

export const LoginFormEntryZ = z.object({
email: z.string().email(),
Expand Down
2 changes: 1 addition & 1 deletion src/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
} from "@tabler/icons-react"

import { AuthStatus, useUserStore } from "./user"
import classes from "/public/styles/navbar.module.css"
import classes from "/styles/navbar.module.css"

type NavbarItem = {
link: string
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit dde96b7

Please sign in to comment.