"use client"; import { usePathname } from "next/navigation"; import { FooterNew } from "@/components/homepage/footer-new"; import { Navbar } from "@/components/homepage/navbar"; export default function HomePageLayout({ children }: { children: React.ReactNode }) { const pathname = usePathname(); const isAuthPage = pathname === "/login" || pathname === "/register"; const isFreeModelChat = /^\/free\/[^/]+$/.test(pathname); if (isFreeModelChat) { return <>{children}; } return (
{children} {!isAuthPage && }
); }