thank-you.js
1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import PageBanner from '@/components/reuseables/PageBanner';
import Link from 'next/link';
import React from 'react'
import {Col, Container, Row } from 'react-bootstrap'
const banners = [
{
imageSrc: "/images/banner/corpedia.webp",
pageTitle: "Thank you",
homePageUrl: "/",
homePageText: "Home",
activePageText: "thank you",
},
// Add more banners as needed
];
const thankyou = () => {
return (
<>
<PageBanner banners={banners} />
<Container className='mt-5'>
<Row>
<Col md={12}>
<div className="text-center">
<h4 className="text-center">Thank you for your interest in our product. We will get back to you shortly.</h4>
<button className="default-btn mt-4 mb-5">
<i className="ri-arrow-right-line"></i>
<Link href="/">Back to Home</Link></button>
</div>
</Col>
</Row>
</Container>
</>
)
}
export default thankyou