import Image from "next/image"; import Link from "next/link"; import type { FeedLayoutProps } from "./FeedLayout.types"; /** * Feed layout template — custom minimal header (Drinkool brand, no auth button). * Used by the (feed) route group. */ export default function FeedLayout({ children }: FeedLayoutProps) { return ( <> {/* Custom Drinkool header — no login button */}
Logo Drinkool
Drinkool
{children}
); }