Add Footer to all pages

This commit is contained in:
2023-07-23 10:28:43 +04:00
parent d47f7e5585
commit b113266e2e
5 changed files with 13 additions and 1 deletions
+2
View File
@@ -5,6 +5,7 @@ import {Box, Container, Typography, Paper} from '@mui/material'
import PaymentMethod from '../../components/soutyen/payment-method'
import Presantasyon from '../../components/soutyen/presantasyon'
import Footer from '../../components/footer'
export default function Sipote() {
const [paymentMethod, setPaymentMethod] = useState(0)
@@ -27,6 +28,7 @@ export default function Sipote() {
<Presantasyon />
</Container>
</Box>
<Footer />
</Box>
)
}