feat: change folder name landing to public

This commit is contained in:
hanif salafi 2024-12-04 07:34:23 +07:00
parent d6a0c0010d
commit 85df7fbf23
14 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,22 @@
import LayoutProvider from "@/providers/layout.provider";
import LayoutContentProvider from "@/providers/content.provider";
import DashCodeSidebar from '@/components/partials/sidebar'
import DashCodeFooter from '@/components/partials/footer'
import ThemeCustomize from '@/components/partials/customizer'
import DashCodeHeader from '@/components/partials/header'
import { auth } from "@/lib/auth";
import { redirect } from "@/components/navigation";
import Navbar from "@/components/landing-page/Navbar";
import Footer from "@/components/landing-page/Footer";
const layout = async ({ children }: { children: React.ReactNode }) => {
return (
<>
<Navbar />
{children}
<Footer />
</>
)
};
export default layout;