diff --git a/src/components/Page.tsx b/src/components/Page.tsx index 66af1b0..26ef341 100644 --- a/src/components/Page.tsx +++ b/src/components/Page.tsx @@ -1,7 +1,36 @@ -import React from "react"; +import React, { useEffect } from "react"; import { Outlet } from "react-router"; +const logMessage = ` + /$$$$$$ /$$$$$$ /$$ /$$/$$ + /$$__ $$/$$__ $| $$$ /$$| $$ +| $$ \\__| $$ \\ $| $$$$ /$$$| $$ +| $$$$$$| $$$$$$$| $$ $$/$$ $| $$ + \\____ $| $$__ $| $$ $$$| $| $$ + /$$ \\ $| $$ | $| $$\\ $ | $| $$ +| $$$$$$| $$ | $| $$ \\/ | $| $$$$$$$$ + \\______/|__/ |__|__/ |__|________/ + + + + /$$ /$$/$$ /$$$$$$ +| $$ | $| $$ /$$__ $$ +| $$ | $| $$/$$ /$| $$ \\__/$$$$$$ +| $$$$$$$| $| $$ | $| $$$$ /$$__ $$ +|_____ $| $| $$ | $| $$_/ | $$$$$$$$ + | $| $| $$ | $| $$ | $$_____/ + | $| $| $$$$$$| $$ | $$$$$$$ + |__|__/\\____ $|__/ \\_______/ + /$$ | $$ + | $$$$$$/ + \\______/ +`; + export function Page() { + useEffect(() => { + console.log(logMessage); + }, []); + return (