"use client"; import { MobileMenu } from "./mobileMenu/mobileMenu"; import Link from "next/link"; import { useSelectedLayoutSegment } from "next/navigation"; import clsx from "clsx"; import { SectionService } from "@/features/sections"; import { ColorSchemeSwitch } from "@/features/colorSchemeSwitch"; export const Header = () => { const currentPageName = useSelectedLayoutSegment(); return (

JellyBelly

{SectionService.sections.map((section) => ( {SectionService.sectionsConfiguration[section].sectionName} ))}
{/* */}
); };