Files
pawol.nu/app/sipote/page.js
T

35 lines
1.1 KiB
JavaScript
Raw Normal View History

2023-07-22 13:08:28 +04:00
'use client'
import {useState} from 'react'
import {Box, Container, Typography, Paper} from '@mui/material'
import PaymentMethod from '../../components/soutyen/payment-method'
import Presantasyon from '../../components/soutyen/presantasyon'
2023-07-23 10:28:43 +04:00
import Footer from '../../components/footer'
2023-07-22 13:08:28 +04:00
export default function Sipote() {
const [paymentMethod, setPaymentMethod] = useState(0)
return (
<Box sx={{display: 'flex', marginTop: 10, flexDirection: 'column', minHeight: '100vh'}}>
2023-07-22 13:08:28 +04:00
<Box sx={{flexGrow: 1, marginBottom: 10}}>
<Container>
<Typography gutterBottom sx={{fontWeight: 'bold', textAlign:'center' }} variant='h4' component='h1'>
2024-06-01 20:23:46 +04:00
Soutenir ORGANISATION KA INTERNATIONALE !
2023-07-22 13:08:28 +04:00
</Typography>
<Paper sx={{padding: 2, marginTop: 3}}>
<Box sx={{textAlign: 'center'}}>
<PaymentMethod
paymentMethod={paymentMethod}
setPaymentMethod={setPaymentMethod}
/>
</Box>
</Paper>
<Presantasyon />
</Container>
</Box>
2023-07-23 10:28:43 +04:00
<Footer />
2023-07-22 13:08:28 +04:00
</Box>
)
}