26 lines
457 B
TypeScript
26 lines
457 B
TypeScript
// 'use client'
|
|
|
|
import { Button } from "@nextui-org/button"
|
|
|
|
// import { Box } from '@chakra-ui/react'
|
|
|
|
// export default function About() {
|
|
// return (
|
|
// <Box color={"black"}>
|
|
// About
|
|
// The stuff is here
|
|
// <Box bg='tomato' w='100%' p={4} color='white'>
|
|
// This is the Box
|
|
// </Box>
|
|
// </Box>
|
|
// )
|
|
// }
|
|
|
|
export default function About() {
|
|
return (
|
|
<div>
|
|
<Button>Click me</Button>
|
|
</div>
|
|
)
|
|
}
|