Skip to content

Commit

Permalink
feat: add blog page
Browse files Browse the repository at this point in the history
  • Loading branch information
zoruka committed Jun 27, 2024
1 parent 15a969e commit 46a362d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/app/blog/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { Section } from '@/components';

export default function ProjectsPage() {
return (
<Section heading="Scrolls">
<i style={{ paddingTop: '1rem', opacity: '0.5' }}>
This section is under construction
</i>
<span style={{ opacity: '0.5' }}>🚧 🚧 🚧</span>
</Section>
);
}
1 change: 1 addition & 0 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export default function RootLayout({
tabs={[
{ route: '/', label: 'About' },
{ route: '/projects', label: 'Projects' },
{ route: '/blog', label: 'Blog' },
]}
>
{children}
Expand Down

0 comments on commit 46a362d

Please sign in to comment.