Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated the promotion banner #2965

Merged
merged 2 commits into from
Jul 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/containers/Auth/Auth.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import WhatsAppIcon from 'assets/images/icons/Social/Whatsapp.svg?react';
import { termsOfUse } from 'containers/Organization/Organization';
import { Button } from 'components/UI/Form/Button/Button';
import GlificLogo from 'assets/images/logo/Logo.svg';
// import { Promotion } from './Promotion/Promotion';
import { Promotion } from './Promotion/Promotion';
import styles from './Auth.module.css';
import axios from 'axios';
import { ORGANIZATION_NAME } from 'config';
Expand Down Expand Up @@ -268,7 +268,7 @@ export const Auth = ({
) : null}
</div>

{/* {mode === 'login' && <Promotion />} */}
{mode === 'login' && <Promotion />}
</div>
);
};
1 change: 1 addition & 0 deletions src/containers/Auth/Promotion/Promotion.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@
line-height: 1.25;
align-items: baseline;
display: flex;
text-align: justify;
}

.BodyListText > span {
Expand Down
26 changes: 15 additions & 11 deletions src/containers/Auth/Promotion/Promotion.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import styles from './Promotion.module.css';

export const Promotion = () => {
const [minimized, setMinimized] = useState(false);
const LINK = 'https://us06web.zoom.us/meeting/register/tZYpceqqrzIqGd3W7dSrHS2VGzFhdSq2exYR';
const LINK = 'https://us06web.zoom.us/meeting/register/tZErfuyqqTopEtMrq4kRM7_a0G7VqgzaFL5H';

return (
<div className={minimized ? styles.ContainerMin : styles.ContainerMax}>
Expand All @@ -32,26 +32,30 @@ export const Promotion = () => {
<div className={styles.Image}>
<span>
Level up with Glific <br />
Q&A with Gupshup
<br />
Glific Integrations & Possibilities
</span>
<span>19th June, 3-4PM</span>
<span>23rd July, 3-4PM</span>
</div>

<div className={styles.Points}>
<div className={styles.BodyListText}>
{/* <div className={styles.BodyListText}>
<span>{1}</span>
<div>
Get answers to commonly asked questions- Message categories, gupshup wallet &
costing, message delivery etc.
Learn about the powerful integrations NGOs have done with Glific to create
interconnected experience for their beneficiaries.
</div>
</div>
<div className={styles.BodyListText}>
</div> */}
{/* <div className={styles.BodyListText}>
<span>2</span>
<div>Open session to ask questions to Gupshup team directly.</div>
</div>
{/* <div className={styles.BodyListText}>
<div>Reach out to Glific team if you have questions/concerns.</div>
</div> */}
<div className={styles.BodyListText}>
<div>
Learn about the powerful integrations NGOs have done with Glific to create
interconnected experience for their beneficiaries.
</div>
</div>
</div>
<a className={styles.Link} href={LINK} target="_blank" rel="noreferrer">
<div className={styles.KnowMore}>
Expand Down
Loading