diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx new file mode 100644 index 0000000..1116a2a --- /dev/null +++ b/src/app/blog/page.tsx @@ -0,0 +1,12 @@ +import { Section } from '@/components'; + +export default function ProjectsPage() { + return ( +
+ + This section is under construction + + 🚧 🚧 🚧 +
+ ); +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6be52da..6bf07e0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -34,6 +34,7 @@ export default function RootLayout({ tabs={[ { route: '/', label: 'About' }, { route: '/projects', label: 'Projects' }, + { route: '/blog', label: 'Blog' }, ]} > {children}