feat: Add dashboard for managing portfolio content (blog, experience, projects) and restructure public portfolio routes.

This commit is contained in:
Moh Dzulfikri Maulana
2026-03-09 05:37:58 +07:00
parent dca848666e
commit e25416f3db
31 changed files with 2591 additions and 35 deletions

View 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 />
</>
);
}