"use client" import Link from "next/link" import { ChevronLeft, ChevronRight } from "lucide-react" import { Button } from "@/components/ui/button" import { Separator } from "@/components/ui/separator" import { cn } from "@/lib/utils" interface Section { id: string name: string category: string } interface SectionNavigationProps { currentSection: Section previousSection: Section | null nextSection: Section | null } export function SectionNavigation({ currentSection, previousSection, nextSection }: SectionNavigationProps) { return (
{/* Previous Section */}
{previousSection ? ( ) : (
// Empty div to maintain layout )}
{/* Next Section */}
{nextSection ? ( ) : (
// Empty div to maintain layout )}
) }