Skip to content

Commit

Permalink
feat: atualizando seo e acessibilidade
Browse files Browse the repository at this point in the history
  • Loading branch information
Diogo committed Jul 25, 2023
1 parent 533c83e commit c77f7f5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion public/sw.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const metadata = {
},
],
},
robots: 'all',
robots: 'follow,index',
twitter: {
card: 'summary_large_image',
title: siteConfig.title,
Expand Down
4 changes: 2 additions & 2 deletions src/components/Post/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const DateContainer = tw.div`

export const Date = tw.p`
mb-2
text-gray-400
text-gray-200
`

export const Title = tw.h1`
Expand All @@ -53,5 +53,5 @@ export const Title = tw.h1`
export const Description = tw.p`
mb-8
text-2xl
text-gray-400
text-gray-200
`
5 changes: 3 additions & 2 deletions src/components/Tag/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@ import { TagProps } from './Tag'

export const Tag = tw.p<Pick<TagProps, 'size'>>`
rounded-2xl
bg-gray-500
bg-violet-900
px-3
py-1
font-normal
capitalize
text-gray-200
text-gray-100
transition-colors
duration-300
hover:bg-violet-600
${({ size }) => `
text-${size}
Expand Down
1 change: 1 addition & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ module.exports = {
foldit: ['Foldit', 'cursive'],
},
colors: {
primary: '#00241b',
secundary: '#2E3038',
link: '#3ec786',
},
Expand Down

0 comments on commit c77f7f5

Please sign in to comment.