|
1 | 1 | import { useEffect, useRef, useState } from "react";
|
2 |
| -import { Alert, BooleanSwitchWithLabel, Typography } from "@firecms/ui"; |
| 2 | +import { Alert, BooleanSwitchWithLabel, OpenInNewIcon, Typography } from "@firecms/ui"; |
3 | 3 | import { FirebaseLoginView, FirebaseLoginViewProps } from "@firecms/firebase";
|
4 | 4 |
|
5 | 5 | export function CustomLoginView(props: FirebaseLoginViewProps) {
|
@@ -27,14 +27,27 @@ export function CustomLoginView(props: FirebaseLoginViewProps) {
|
27 | 27 | disabled={!termsAccepted}
|
28 | 28 | >
|
29 | 29 | <>
|
30 |
| - <Typography variant={"h6"} className={"mb-2"}> |
31 |
| - FireCMS e-commerce demo |
| 30 | + <Typography variant={"h5"} className={"mb-2"}> |
| 31 | + FireCMS e-commerce and blog demo |
32 | 32 | </Typography>
|
33 |
| - <Typography className={"mb-4"} variant={"caption"}> |
| 33 | + |
| 34 | + <Typography className={"mb-4"} variant={"body2"}> |
34 | 35 | This is a demo application that showcases the capabilities of FireCMS.
|
35 |
| - You can see a sample frontend application built with Next.js in |
36 |
| - this <a href={"/"} target={"_blank"} rel={"noreferrer"}> link</a>. |
| 36 | + Check the sample frontend application built with Next.js |
| 37 | + in <a href={"/"} target={"_blank"} rel={"noreferrer"}>this link <OpenInNewIcon |
| 38 | + size={"smallest"} |
| 39 | + className={"inline"}/></a>. |
37 | 40 | </Typography>
|
| 41 | + |
| 42 | + {/*<Link*/} |
| 43 | + {/* target={"_blank"}*/} |
| 44 | + {/* href={"../products"}>*/} |
| 45 | + {/* <Button size={"small"}*/} |
| 46 | + {/* variant={"text"}*/} |
| 47 | + {/* fullWidth*/} |
| 48 | + {/* startIcon={<OpenInNewIcon/>}>See demo frontend app</Button>*/} |
| 49 | + {/*</Link>*/} |
| 50 | + |
38 | 51 | <BooleanSwitchWithLabel size="small"
|
39 | 52 | invisible={true}
|
40 | 53 | value={newsletterSubscribed}
|
|
0 commit comments