feat: Add dashboard for managing portfolio content (blog, experience, projects) and restructure public portfolio routes.
This commit is contained in:
18
src/app/(portfolio)/layout.tsx
Normal file
18
src/app/(portfolio)/layout.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import { Navbar } from "@/components/sections/portfolio/Navbar";
|
||||
import { Footer } from "@/components/sections/portfolio/Footer";
|
||||
import { AnalyticsTracker } from "@/components/dashboard/cms/analytics/analyticts-tracker";
|
||||
|
||||
export default function PortfolioLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<>
|
||||
<Navbar />
|
||||
<AnalyticsTracker />
|
||||
<main>{children}</main>
|
||||
<Footer />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user