diff --git a/src/App.tsx b/src/App.tsx index 0533adf4..938f1f8f 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,13 +1,12 @@ -import { useEffect, useState } from "react"; -import { Link, Route, Routes, useParams } from "react-router-dom"; import { ProjectListItem } from "@/components/ProjectListItem"; import { type ProjectEntry, projectList, projects } from "@/projects"; +import { useEffect, useState } from "react"; +import { Link, Route, Routes, useParams } from "react-router-dom"; import { ThemeToggle } from "./components/theme-toggle"; const asciiFiles = [ "cat-sleep.txt", - "polar-bear.txt", - "sleep-cat-ascii-art.txt", + // "polar-bear.txt", ]; function App() { @@ -49,11 +48,11 @@ function Home() { return (
- {/* {asciiArt ? ( + {asciiArt ? (
 						{asciiArt}
 					
- ) : null} */} + ) : null}

Oliver Bryan