biome check

This commit is contained in:
2026-02-05 16:32:44 +00:00
parent b4a577762b
commit 8e6c734bb4
4 changed files with 8 additions and 8 deletions

View File

@@ -1,9 +1,9 @@
import { AskAI } from "@/components/ask-ai";
import { ProjectListItem } from "@/components/ProjectListItem";
import { type ProjectEntry, projectList, projects } from "@/projects";
import { Downasaur, Home as HomeIcon } from "@nsmr/pixelart-react"; import { Downasaur, Home as HomeIcon } from "@nsmr/pixelart-react";
import { useEffect, useState } from "react"; import { useEffect, useState } from "react";
import { Link, Route, Routes, useParams } from "react-router-dom"; import { Link, Route, Routes, useParams } from "react-router-dom";
import { AskAI } from "@/components/ask-ai";
import { ProjectListItem } from "@/components/ProjectListItem";
import { type ProjectEntry, projectList, projects } from "@/projects";
import { ThemeToggle } from "./components/theme-toggle"; import { ThemeToggle } from "./components/theme-toggle";
const asciiFiles = [ const asciiFiles = [

View File

@@ -1,8 +1,8 @@
import { getProjectPrompt } from "@/lib/constants";
import type { ProjectMetadata } from "@/projects";
import { Home } from "@nsmr/pixelart-react"; import { Home } from "@nsmr/pixelart-react";
import type { ReactNode } from "react"; import type { ReactNode } from "react";
import { Link } from "react-router-dom"; import { Link } from "react-router-dom";
import { getProjectPrompt } from "@/lib/constants";
import type { ProjectMetadata } from "@/projects";
import { AskAI } from "./ask-ai"; import { AskAI } from "./ask-ai";
export function ProjectPage({ export function ProjectPage({

View File

@@ -1,8 +1,8 @@
import { AI_SUMMARY_PROMPT } from "@/lib/constants";
import { cn } from "@/lib/utils";
import { Icon } from "@iconify/react"; import { Icon } from "@iconify/react";
import { Copy } from "@nsmr/pixelart-react"; import { Copy } from "@nsmr/pixelart-react";
import { useRef, useState } from "react"; import { useRef, useState } from "react";
import { AI_SUMMARY_PROMPT } from "@/lib/constants";
import { cn } from "@/lib/utils";
const chatGptUrl = "https://chat.openai.com/?q="; const chatGptUrl = "https://chat.openai.com/?q=";
const claudeUrl = "https://claude.ai/new?q="; const claudeUrl = "https://claude.ai/new?q=";

View File

@@ -1,6 +1,6 @@
import { Moon, Sun } from "@nsmr/pixelart-react";
import { useTheme } from "@/components/theme-provider"; import { useTheme } from "@/components/theme-provider";
import { Button } from "@/components/ui/button"; import { Button } from "@/components/ui/button";
import { Moon, Sun } from "@nsmr/pixelart-react";
export function ThemeToggle() { export function ThemeToggle() {
const { resolvedTheme, setTheme } = useTheme(); const { resolvedTheme, setTheme } = useTheme();