// React import { useEffect, useState } from "react"; // NextJs import Image from "next/image"; // Styles import color from "../../styles/color"; // Components import { Logo } from "../../components/logo"; import { SkeletonCircle, SkeletonText } from "../../components/skeleton"; import { Container, MainContainer, ContentContainer, ProfileContainer, ProfileFollowContainer, ProfileContentContainer, ProfileImageContainer, ProfileNameContainer, ProfileFollowerContainer, ProfileFollowBold, ProfileUserNameContainer, ProfileDescriptionContainer, ChainListTitle, SearchContainer, ChainContainer, ChainItemContainer, ChainImageContainer, ChainInfoContainer, ChainListTitleContainer, ChainName, WalletAddress, Flex1, ChainCheckBox, ButtonContainer, SkeletonDivider, SkeletonButton, } from "./styled"; import { PrimaryButton } from "../../components/primary-button"; export default function VerificationPage() { const [isLoading, setIsLoading] = useState(true); const dummy = new Array(5); useEffect(() => { setTimeout(() => setIsLoading(false), 1500); }, []); return ( {isLoading ? ( ) : ( profile image BaeHeesung @BaeHeesung25 42 Following 42 Following Product UIUX designer @Keplrwallet and I like @regen_network🌿 Chain List Search chain image .osmo cosmos14ky6udatsvdx859050mrnr7rvml0huue2wszvs chain image .osmo cosmos14ky6udatsvdx859050mrnr7rvml0huue2wszvs chain image .osmo cosmos14ky6udatsvdx859050mrnr7rvml0huue2wszvs chain image .osmo cosmos14ky6udatsvdx859050mrnr7rvml0huue2wszvs chain image .osmo cosmos14ky6udatsvdx859050mrnr7rvml0huue2wszvs chain image .osmo cosmos14ky6udatsvdx859050mrnr7rvml0huue2wszvs Register )} ); }