"use client"; import Footer from "@/app/(main)/footer"; import Header from "@/app/(main)/header"; import { auth } from "@/auth"; import { SignIn } from "@/components/SignIn"; import getEnv from "@/lib/env-entry"; import React from "react"; type DashboardProps = { children: React.ReactNode; }; export default function MainLayout({ children }: DashboardProps) { return (