···11-import { isObj, type Prettify } from "../../../utils";
11+import { isObj, type Prettify } from "/utils";
2233export type AuthToken = {
44 access_token: string;
+1-1
src/pages/_callback.astro
···11---
22import { SPOTIFY_CLIENT_ID, SPOTIFY_REDIRECT_URI } from "astro:env/server";
33-import { getAccessCode } from "/components/playing/spotify";
33+import { getAccessCode } from "/components/home/playing/spotify";
44// make a 404 if accidentally left in prod
55if (import.meta.env.PROD) return Astro.redirect("/404", 404);
66
+1-1
src/pages/index.astro
···11---
22import Base from "/components/Base.astro";
33import Landing from "/components/home/Landing.astro";
44-import NowPlaying from "/components/playing/NowPlaying.astro";
44+import NowPlaying from "/components/home/playing/NowPlaying.astro";
55---
6677<Base>
+1-1
src/pages/now-playing-sse.ts
···22 spotifyNowPlaying,
33 SpotifyError,
44 type nowPlaying,
55-} from "/components/playing/spotify";
55+} from "/components/home/playing/spotify";
6677export async function GET() {
88 const update = async (): Promise<string> => {