import { getI18n } from "@/i18n/i18n.server" import { InterestsIcons, type InterestParagraphProps, } from "../InterestParagraph" import { InterestItem } from "./InterestItem" export const InterestsList = (): JSX.Element => { const i18n = getI18n() let paragraphs = i18n.translate( "home.interests.paragraphs", ) if (!Array.isArray(paragraphs)) { paragraphs = [] } return (
) }