This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const axios = require("axios"); | |
const fs = require('fs'); | |
const readline = require("readline"); | |
let plus = "[[32m+[0m]"; | |
let mins = "[[31m-[0m]"; | |
let seru = "[[34m![0m]"; | |
let end_at = 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use client"; | |
import "./style.scss"; | |
import React, { useRef, useEffect, useState } from "react"; | |
import { twMerge } from "tailwind-merge"; | |
import { motion, animate } from "framer-motion"; | |
import useResponsive from "@/hooks/useResponsive"; | |
import { useGlobalState } from "@/hooks/use-global-state"; | |
interface ScrollableContentProps { | |
children: React.ReactNode; |