"use client"; import Image from "next/image"; import Link from "next/link"; export default function AuthLayout({ children }: { children: React.ReactNode }) { return (
{/* Left brand panel — hidden on mobile */}
{/* Decorative blurs */}
{/* Subtle honeycomb pattern */}
honeyDue honeyDue

Home maintenance,
simplified.

Track tasks, organize contractors, and store important documents — all in one place built for homeowners.

© {new Date().getFullYear()} honeyDue

{/* Right form area */}
{children}
); }