This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"24-hours-fill": "59905", | |
"24-hours-line": "59906", | |
"4k-fill": "59907", | |
"4k-line": "59908", | |
"a-b": "59909", | |
"account-box-fill": "59910", | |
"account-box-line": "59911", | |
"account-circle-fill": "59912", | |
"account-circle-line": "59913", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const errors = { | |
auth: { | |
login: [ | |
"This device is unrecognised, an otp has been sent to your mail to verify the account", | |
"invalid credentials", | |
], | |
signuOtp: ["email in use", "Otp has been sent within the minute"], | |
verifySignupOtp: ["Otp entered is incorrect", "Otp has expired"], | |
saveSignupDetails: [ | |
"Phone number entered is not a valid Nigerian number", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
LOWERCASE_ALPHABETS = "abcdefghijklmnopqrstuvwxyz" | |
UPPERCASE_ALPHABETS = LOWERCASE_ALPHABETS.upper() | |
DIGITS = "0123456789" | |
SPECIAL_CHARACTERS = "!@#$%^&*()_+" | |
PASSWORD_LENGTH = 12 | |
lowercase_count = 3 | |
uppercase_count = 3 | |
digits_count = 3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
LOWERCASE_ALPHABETS = "abcdefghijklmnopqrstuvwxyz" | |
UPPERCASE_ALPHABETS = LOWERCASE_ALPHABETS.upper() | |
DIGITS = "0123456789" | |
SPECIAL_CHARACTERS = "!@#$%^&*()_+" | |
ALL = LOWERCASE_ALPHABETS + UPPERCASE_ALPHABETS + DIGITS + SPECIAL_CHARACTERS | |
PASSWORD_LENGTH = 12 | |
password = "".join(random.choices(ALL, k=PASSWORD_LENGTH)) | |
print(password) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
import { styled } from "../../stitches.config"; | |
import { motion } from "framer-motion"; | |
const data = [ | |
{ | |
id: 1, | |
name: "Top gun", | |
img: "/top-gun.jpeg", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Box | |
css={{ | |
minHeight: "100vh", | |
minWidth: "100vw", | |
display: "grid", | |
placeItems: "center", | |
}} | |
> | |
<Box | |
css={{ display: "grid", gridTemplateColumns: "repeat(2,1fr)", gap: 20 }} |