import { Certification } from "@/components/cert"; import { Rule } from "@/components/rule"; import { Certifications } from "@/config/Certifications"; import { Charm } from "next/font/google"; const Certs = (): JSX.Element => { return ( <>

Certs

This page lists the professional certifications Naomi has obtained throughout her time as a developer.

{Certifications.sort( (a, b) => b.date.getTime() - a.date.getTime(), ).map((cert) => ( ))}
); }; export default Certs;