Commit 81f777a9 authored by Wellton Quirino's avatar Wellton Quirino

feat: create registration page

parent 5bf6bbe2
import { SignUp } from '@/components/sign-up'
export default function Inscricao() {
return (
<main>
<SignUp />
</main>
)
}
import { ComponentProps } from 'react'
function LogoComponent(props: ComponentProps<'svg'>) {
console.log('prossspp', props.className)
return (
<svg
width={1801}
......
......@@ -20,8 +20,6 @@ export function PaginationComponent({
totalCount,
}: PaginationProps) {
const pages = Math.ceil(totalCount / perPage) || 1
console.log('🚀 ~ pages:', pages)
console.log('🚀 ~ pageIndex:', pageIndex)
return (
<Pagination>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment