import clsx from "clsx"; import React from "react"; import Highlight from "../../ui/highlight"; const Sections = () => { return ( <>
); }; interface ResourceProps { title: string; subtitle: string; className: string; } const Section = ({ title, subtitle, className }: ResourceProps) => { return (

{title}

{subtitle}

); }; export default Sections;