import React, { ReactElement, useEffect, useState } from "react" import Head from "next/head" function genSpan(len: number) { const indents = [] for (let i = 0; i < len; i++) { indents.push() } return indents } interface BgsType { css: string html: ReactElement } const bgs: BgsType[] = [ { css: "/assets/css/blurBg.css", html: