Update README

This commit is contained in:
Criador_Mod
2026-04-03 00:33:03 +01:00
parent 05f0fed0c3
commit aa9dd32353
2 changed files with 3 additions and 3 deletions

View File

@@ -45,7 +45,7 @@ Push the built `dist/` output to your Cloudflare Pages project.
## Stack
- React 18
- Vite 5
- Vite 8
- Minecraft font (`typeface-minecraft`)
- Cloudflare Pages

View File

@@ -1,7 +1,7 @@
import { create } from "zustand";
// Types
import { IProjects } from "../types/projects";
import { IProjects } from "@/types/projects";
type State = {
loading: boolean;
@@ -25,4 +25,4 @@ const useRepoStore = create<State & Actions>((set) => ({
setError: (error) => set(() => ({ error })),
}));
export default useRepoStore;
export default useRepoStore;