'use client'; import './style.scss'; import { useState, useEffect } from 'react'; import Image from 'next/image'; import Link from 'next/link'; import Pagination from '@/app/component/Pagination'; export default function View() { const [error, setError] = useState(''); const [loading, setLoading] = useState(true); const [total, setTotal] = useState(0); const [page, setPage] = useState(1); // const [logs, setLogs] = useState([]); useEffect(() => { }, []); return ( <> {/* NEWS */}

NEWS


news
Bitcoin Dominance At Risk Of Crash To 40%, Why This Is Good For Ethereum, XRP, And Altcoins 2025.04.20 12:52
The Bitcoin dominance in the cryptocurrency market is inching dangerously close to a long-term resistance level that has triggered major reversals in the past. This resistance level is highlighted on the weekly BTC.D candlestick timeframe chart. Each time the dominance taps this descending trendli...


); }