import { t } from "@lingui/macro"; import { templatesList } from "@reactive-resume/utils"; import { motion } from "framer-motion"; export const TemplatesSection = () => (

{t`Templates`}

{t`Explore the templates available in Reactive Resume and view the resumes crafted with them. They could also serve as examples to help guide the creation of your next resume.`}

{templatesList.map((template, index) => ( {template} ))}
);