Skip to content

Commit

Permalink
feat(seo): add about page metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusfg7 committed Jul 18, 2023
1 parent 887b92d commit 822d928
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 7 additions & 0 deletions src/app/(main)/about/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
import { Metadata } from 'next'

export const metadata: Metadata = {
title: 'About Me',
description: 'Who I am, what I know and where I am...'
}

export default function AboutLayout({
children
}: {
Expand Down
4 changes: 0 additions & 4 deletions src/app/(main)/about/page.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
import { Metadata } from 'next'

import { AboutMe } from './sections/about-me'
import { Knowledge } from './sections/knowledge'

import './styles.css'

export const metadata: Metadata = {}

export default function Page() {
return (
<div className="blog-content-w m-auto space-y-40">
Expand Down

0 comments on commit 822d928

Please sign in to comment.