-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(merge): resolved 'main' conflicts
- Loading branch information
Showing
20 changed files
with
204 additions
and
13,789 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
import * as React from "react" | ||
import { | ||
Body, | ||
Button, | ||
Container, | ||
Head, | ||
Hr, | ||
Html, | ||
Img, | ||
Preview, | ||
Section, | ||
Text, | ||
} from "@react-email/components" | ||
|
||
import { siteConfig } from "@/config/site" | ||
|
||
export function EmailWhitelist() { | ||
return ( | ||
<Html> | ||
<Head /> | ||
<Preview> | ||
We welcome you to {siteConfig.name}! Get started with us. | ||
</Preview> | ||
<Body style={main}> | ||
<Container style={container}> | ||
<Img | ||
src={siteConfig.images.logo} | ||
height="42" | ||
alt={`${siteConfig.name} logo`} | ||
style={logo} | ||
/> | ||
<Text style={paragraph}>Hi there,</Text> | ||
<Text style={paragraph}> | ||
Welcome to {siteConfig.name}! We're excited to have you on | ||
board. Before you get started, we need to verify your email address. | ||
Please click the button below to complete the registration process. | ||
</Text> | ||
<Section style={btnContainer}> | ||
<Button style={button} href={`${siteConfig.url}/register`}> | ||
Get started | ||
</Button> | ||
</Section> | ||
<Hr style={hr} /> | ||
|
||
<Text style={paragraph}> | ||
You are accepted in the whitelist, you can now access the platform. | ||
We can't wait to see what you build with {siteConfig.name}! | ||
Check out our documentation to get started. | ||
</Text> | ||
<Hr style={hr} /> | ||
|
||
<Text style={paragraph}> | ||
Best, | ||
<br /> | ||
The {siteConfig.name} team | ||
</Text> | ||
<Hr style={hr} /> | ||
<Text style={footer}>Undrstnd Labs Inc, 5000 Monastir, Tunisia</Text> | ||
</Container> | ||
</Body> | ||
</Html> | ||
) | ||
} | ||
|
||
const main = { | ||
backgroundColor: "#ffffff", | ||
fontFamily: | ||
'-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif', | ||
} | ||
|
||
const container = { | ||
margin: "0 auto", | ||
padding: "20px 0 48px", | ||
} | ||
|
||
const logo = { | ||
margin: "0 auto", | ||
} | ||
|
||
const paragraph = { | ||
fontSize: "16px", | ||
lineHeight: "26px", | ||
} | ||
|
||
const btnContainer = { | ||
textAlign: "center" as const, | ||
} | ||
|
||
const button = { | ||
backgroundColor: "#5F51E8", | ||
borderRadius: "3px", | ||
color: "#fff", | ||
fontSize: "16px", | ||
textDecoration: "none", | ||
textAlign: "center" as const, | ||
display: "block", | ||
padding: "12px", | ||
} | ||
|
||
const hr = { | ||
borderColor: "#cccccc", | ||
margin: "20px 0", | ||
} | ||
|
||
const footer = { | ||
color: "#8898aa", | ||
fontSize: "12px", | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,24 @@ | ||
import { Icons } from "@/components/shared/icons" | ||
import { Partnership } from "@/types" | ||
|
||
export const partnerships: Partnership[] = [ | ||
{ | ||
company: "Tunisian I.T. Community", | ||
href: "https://www.facebook.com/TunITCo", | ||
label: "tunisian-it-community", | ||
image: Icons.tic | ||
}, | ||
{ | ||
company: "Google Developer Club", | ||
href: "https://www.facebook.com/google.developer.groups.gdg.on.campus.esprit", | ||
label: "google-developer-club", | ||
image: Icons.gdg | ||
}, | ||
{ | ||
company: "Open Source Tunisia", | ||
href: "https://www.linkedin.com/company/open-source-tunisia/", | ||
label: "open-source-tunisia", | ||
image: Icons.ost | ||
} | ||
] | ||
import { Partnership } from "@/types" | ||
|
||
import { Icons } from "@/components/shared/icons" | ||
|
||
export const partnerships: Partnership[] = [ | ||
{ | ||
company: "Tunisian I.T. Community", | ||
href: "https://www.facebook.com/TunITCo", | ||
label: "tunisian-it-community", | ||
image: Icons.tic, | ||
}, | ||
{ | ||
company: "Google Developer Club", | ||
href: "https://www.facebook.com/google.developer.groups.gdg.on.campus.esprit", | ||
label: "google-developer-club", | ||
image: Icons.gdg, | ||
}, | ||
{ | ||
company: "Open Source Tunisia", | ||
href: "https://www.linkedin.com/company/open-source-tunisia/", | ||
label: "open-source-tunisia", | ||
image: Icons.ost, | ||
}, | ||
] |
Oops, something went wrong.