import { PageRoutes } from "data/routes"; import Link from "next/link"; import React from "react"; import styles from "./Sections.module.css"; interface SectionsProps { /* Whether to display the "Sections" title and separator that appears on the left. */ showHeader?: boolean; /* Width of the entire Sections, in px. */ width?: number; data: PageRoutes; className?: string; } export function Sections({ data, showHeader = true, className, }: SectionsProps) { return (
{showHeader ? ( <>

Sections

) : ( "" )}
); }