|
6 | 6 | import { |
7 | 7 | PUBLIC_LOGO_URL, |
8 | 8 | PUBLIC_BRAND_NAME, |
| 9 | + PUBLIC_COMPANY_WEBSITE, |
9 | 10 | PUBLIC_HOME_SLOGAN, |
10 | 11 | PUBLIC_HOME_IMAGE |
11 | 12 | } from '$env/static/public'; |
|
17 | 18 | showHomeImage = true; |
18 | 19 | showHomeSlogan = true; |
19 | 20 | }); |
20 | | - </script> |
| 21 | +</script> |
21 | 22 |
|
22 | | - <HeadTitle title="{PUBLIC_BRAND_NAME} Workspace" /> |
23 | | - |
24 | | - <div class="home-btn d-none d-sm-block"> |
25 | | - <Link href="" class="text-dark"> |
26 | | - <img |
27 | | - src={PUBLIC_LOGO_URL} |
28 | | - alt="logo" |
29 | | - height="50" |
30 | | - class="auth-logo-dark mx-auto" |
31 | | - /> |
32 | | - </Link> |
33 | | - </div> |
34 | | - |
35 | | - <div class="my-5 pt-sm-5"> |
36 | | - <Container> |
37 | | - <Row> |
38 | | - <Col lg="12"> |
39 | | - <div class="text-center"> |
40 | | - <Row class="justify-content-center mt-5"> |
41 | | - <Col sm="8"> |
42 | | - {#if showHomeImage} |
43 | | - <div class="maintenance-img" transition:fade={{ delay: 300, duration: 500 }}> |
44 | | - <img src={PUBLIC_HOME_IMAGE} alt="" style="width: 25vw;" /> |
45 | | - </div> |
46 | | - {/if} |
47 | | - </Col> |
48 | | - </Row> |
49 | | - {#if showHomeSlogan} |
50 | | - <h4 class="mt-5" transition:fade={{ delay: 500, duration: 500 }}>Let's <a href="login">get started</a> with {PUBLIC_BRAND_NAME}</h4> |
51 | | - <p class="text-muted" transition:fade={{ delay: 800, duration: 500 }}> |
52 | | - {PUBLIC_HOME_SLOGAN} |
53 | | - </p> |
54 | | - {/if} |
55 | | - </div> |
56 | | - </Col> |
57 | | - </Row> |
58 | | - </Container> |
59 | | - </div> |
| 23 | +<HeadTitle title="{PUBLIC_BRAND_NAME} Workspace" /> |
| 24 | + |
| 25 | +<Container> |
| 26 | + <Row> |
| 27 | + <Col class="mt-5 text-end"> |
| 28 | + <Link href={PUBLIC_COMPANY_WEBSITE} class="text-dark"> |
| 29 | + <img |
| 30 | + src={PUBLIC_LOGO_URL} |
| 31 | + alt="logo" |
| 32 | + height="50" |
| 33 | + class="auth-logo-dark mx-auto" |
| 34 | + /> |
| 35 | + </Link> |
| 36 | + </Col> |
| 37 | + </Row> |
| 38 | + <Row> |
| 39 | + <Col lg="12"> |
| 40 | + <div class="text-center"> |
| 41 | + <Row class="justify-content-center mt-5"> |
| 42 | + <Col sm="8"> |
| 43 | + {#if showHomeImage} |
| 44 | + <div class="maintenance-img" transition:fade={{ delay: 300, duration: 500 }}> |
| 45 | + <img src={PUBLIC_HOME_IMAGE} alt="" style="width: 25vw;" /> |
| 46 | + </div> |
| 47 | + {/if} |
| 48 | + </Col> |
| 49 | + </Row> |
| 50 | + {#if showHomeSlogan} |
| 51 | + <h4 class="mt-5" transition:fade={{ delay: 500, duration: 500 }}>Let's <a href="login" class="btn btn-primary">get started</a> with {PUBLIC_BRAND_NAME}</h4> |
| 52 | + <p class="text-muted" transition:fade={{ delay: 800, duration: 500 }}> |
| 53 | + {PUBLIC_HOME_SLOGAN} |
| 54 | + </p> |
| 55 | + {/if} |
| 56 | + </div> |
| 57 | + </Col> |
| 58 | + </Row> |
| 59 | +</Container> |
60 | 60 |
|
0 commit comments