feat: change folder name landing to public
This commit is contained in:
parent
d6a0c0010d
commit
85df7fbf23
|
|
@ -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;
|
||||
Loading…
Reference in New Issue