import { BoxWithHeaderSection, AvatarUsernameAndOtherComponent, Spacing, StackCustom, TextCustom, BadgeCustom, Grid, CircleContainer, } from "@/components"; import dayjs from "dayjs"; export default function Voting_BoxPublishSection({ bottomComponent, }: { bottomComponent?: React.ReactNode; }) { return ( <> Voting Title Here {dayjs().format("DD/MM/YYYY")} -{" "} {dayjs().add(1, "day").format("DD/MM/YYYY")} {bottomComponent} ); }