From 8c7ff54d37d120957881321f395bfaeb5e49f304 Mon Sep 17 00:00:00 2001 From: Oliver Bryan Date: Thu, 5 Feb 2026 14:25:09 +0000 Subject: [PATCH] enabled ascii --- src/App.tsx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) 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