commit zeon:ai_comments

This commit is contained in:
Saahil dutta 2025-07-14 11:18:17 -04:00
parent 43aa586dff
commit ea762d0060
Signed by: neon
GPG key ID: 8A8B64515254CFC6
9 changed files with 396 additions and 3 deletions

20
lib/jsscripts/log.ts Normal file
View file

@ -0,0 +1,20 @@
export function startingLog(): void {
const isDev = process.env.NODE_ENV !== 'production'
console.log(
`%c What's up?`,
`font-size: 120px;
font-family: "Poppins", sans-serif;
background-size: 1000% 1000%;
animation: gradient 1s ease infinite;
`
)
console.log(
`%c Thanks for visting this site you can dontate me at https://ko-fi.com/saahil\n Try to find the easter egg in this site🥚\n HINT: to use it you must use the console it is a very VERY hard one`,
`font-size: 15px;`
)
if (isDev) {
console.debug(
'This message will show during production build. & development build'
)
}
}