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' import { ComponentProps } from 'react'
function LogoComponent(props: ComponentProps<'svg'>) { function LogoComponent(props: ComponentProps<'svg'>) {
console.log('prossspp', props.className)
return ( return (
<svg <svg
width={1801} width={1801}
......
...@@ -20,8 +20,6 @@ export function PaginationComponent({ ...@@ -20,8 +20,6 @@ export function PaginationComponent({
totalCount, totalCount,
}: PaginationProps) { }: PaginationProps) {
const pages = Math.ceil(totalCount / perPage) || 1 const pages = Math.ceil(totalCount / perPage) || 1
console.log('🚀 ~ pages:', pages)
console.log('🚀 ~ pageIndex:', pageIndex)
return ( return (
<Pagination> <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