Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | import { Text } from "@common/Text";
import { useParams } from "react-router-dom";
import giveCorpLogo from "@assets/logos/Logo.png";
import { Stack, styled } from "@mui/material";
import { Button } from "@common/Button";
import Footer from "@pages/Login/Footer";
import { BaseLink } from "@common/Campaigns/BaseLink";
function EnterpriseRestoredPage() {
const { enterpriseName } = useParams();
return (
<Page>
<Container>
<img
src={giveCorpLogo}
alt="give cort logo"
width={111}
height={40}
style={{
margin: "auto",
}}
/>
<Stack gap={1}>
<Title>“{enterpriseName}”</Title>
<Description>has been successfully restored!</Description>
</Stack>
<BaseLink
link="/acquirer/providers"
replace
sx={{
border: "none",
marginTop: "20px",
}}
>
<Button size="small" sx={{ width: "fit-content", paddingX: "18px" }}>
Open Portal
</Button>
</BaseLink>
</Container>
<Footer hideLogo />
</Page>
);
}
export default EnterpriseRestoredPage;
const Container = styled(Stack)({
margin: "auto",
gap: "40px",
alignItems: "center",
});
const Page = styled(Stack)({
height: "100vh",
});
const Description = styled(Text)(({ theme }) => ({
color: theme.palette.neutral["80"],
textAlign: "center",
fontSize: "24px",
fontWeight: 350,
}));
const Title = styled(Description)(() => ({
fontWeight: 500,
}));
|