refactor: with styled-components

This commit is contained in:
Daniel Soares
2021-12-18 00:50:54 -03:00
parent 5138b4dfc2
commit 47d03b6d73
42 changed files with 845 additions and 934 deletions

View File

@@ -1,5 +1,6 @@
import { PrismaClient } from '@prisma/client'
import { hashSync } from 'bcryptjs'
import cuid from 'cuid'
import dotenv from 'dotenv'
const prisma = new PrismaClient()
@@ -53,16 +54,19 @@ async function main() {
],
buttonLinks: [
{
id: cuid(),
label: 'Home',
href: '#'
},
{
id: cuid(),
label: 'About',
href: '/about'
href: '#'
},
{
id: cuid(),
label: 'Contact',
href: '/contact'
href: '#'
}
]
}