diff --git a/.github/workflows/Check-Lint-Format.yml b/.github/workflows/Check-Lint-Format.yml index 3d1b52b..fb8f745 100644 --- a/.github/workflows/Check-Lint-Format.yml +++ b/.github/workflows/Check-Lint-Format.yml @@ -26,7 +26,6 @@ jobs: - name: Setup PNPM uses: pnpm/action-setup@v6 with: - version: latest run_install: false - name: Install dependencies diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index bdfdd2b..2985b1e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -36,7 +36,7 @@ jobs: - name: Setup pnpm uses: pnpm/action-setup@v6 with: - version: latest + run-install: false - name: Install dependencies run: pnpm install --frozen-lockfile diff --git a/AGENTS.md b/AGENTS.md index 31b853a..e308c05 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -38,4 +38,4 @@ This file provides short, actionable instructions for AI coding agents working i ## About the project -Go look in readme.md for more about the project. +Go look in readme.md for more about the project. Also please prefer pnpm. diff --git a/app/FramesList/FramesList.tsx b/app/FramesList/FramesList.tsx index 5b3948b..70f1424 100644 --- a/app/FramesList/FramesList.tsx +++ b/app/FramesList/FramesList.tsx @@ -43,9 +43,9 @@ export function FramesList({
-

Source library

+

Apps library

- Frames ready to explore + Apps ready to use

{filtered.length} results

diff --git a/app/Header.tsx b/app/Header.tsx index 398e8e8..dfb25fa 100644 --- a/app/Header.tsx +++ b/app/Header.tsx @@ -24,12 +24,12 @@ export function Header({
- Source Frames + Skibidi Math
- + setQuery(e.target.value)} diff --git a/app/root.tsx b/app/root.tsx index 50f5338..b01a65e 100644 --- a/app/root.tsx +++ b/app/root.tsx @@ -53,7 +53,9 @@ export function ErrorBoundary({ error }: Route.ErrorBoundaryProps) { if (isRouteErrorResponse(error)) { message = error.status === 404 ? "404" : "Error"; details = - error.status === 404 ? "The requested page could not be found." : error.statusText || details; + error.status === 404 + ? "The requested page could not be found. This can be because the website is broken, or because of issues with github pages or cloudflare pages, you should try another mirror to test." + : error.statusText || details; } else if (import.meta.env.DEV && error && error instanceof Error) { details = error.message; stack = error.stack; @@ -61,8 +63,8 @@ export function ErrorBoundary({ error }: Route.ErrorBoundaryProps) { return (
-

{message}

-

{details}

+

{message}

+

{details}

{stack && (
 					{stack}
diff --git a/app/routes.ts b/app/routes.ts
index 388cd40..6879ef1 100644
--- a/app/routes.ts
+++ b/app/routes.ts
@@ -1,3 +1,6 @@
-import { type RouteConfig, index } from "@react-router/dev/routes";
+import { type RouteConfig, index, route } from "@react-router/dev/routes";
 
-export default [index("routes/home.tsx")] satisfies RouteConfig;
+export default [
+	index("./routes/home.tsx"),
+	route("settings", "./routes/settings.tsx"),
+] satisfies RouteConfig;
diff --git a/app/routes/home.tsx b/app/routes/home.tsx
index b170530..00e2ec5 100644
--- a/app/routes/home.tsx
+++ b/app/routes/home.tsx
@@ -68,7 +68,7 @@ export default function Home() {
 
 			
-

Source Frames

+

Skibidi Math