This commit is contained in:
Jasen Qin 2024-04-27 21:05:22 +10:00
parent 1009c3a94f
commit 5384f173cd
1 changed files with 12 additions and 5 deletions

View File

@ -1,6 +1,6 @@
// 'use client' // 'use client'
import { Button } from "@nextui-org/button" // import { Button } from "@nextui-org/button"
// import { Box } from '@chakra-ui/react' // import { Box } from '@chakra-ui/react'
@ -16,10 +16,17 @@ import { Button } from "@nextui-org/button"
// ) // )
// } // }
export default function About() { import { Container, Row, Col, Button } from 'react-bootstrap'
export default function MyPage() {
return ( return (
<div> <Container>
<Button>Click me</Button> <Row>
</div> <Col>
<h1>Welcome to My Page</h1>
<Button variant="primary">Click Me</Button>
</Col>
</Row>
</Container>
) )
} }