-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.tsx
More file actions
57 lines (55 loc) · 1.99 KB
/
contact.tsx
File metadata and controls
57 lines (55 loc) · 1.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import { Hr, Section, Text } from "@react-email/components";
import Blog from "./components/Blog";
import Layout from "./components/Layout";
const ContactTemplate = () => {
return (
<Layout>
<Section>
<Text>
Hi, <br />
Thank you for getting in touch!
<br />
<br />
Lorem ipsum dolor sit amet consectetur adipiscing elit. Quisque
faucibus ex sapien vitae pellentesque sem placerat. In id cursus mi
pretium tellus duis convallis. Tempus leo eu aenean sed diam urna
tempor.
<br />
Lorem ipsum dolor sit amet consectetur adipiscing elit. Quisque
faucibus ex sapien vitae pellentesque sem placerat. In id cursus mi
pretium tellus duis convallis. Tempus leo eu aenean sed diam urna
tempor.
<br />
<br />
Best regards, <br />
The CroCoder team
</Text>
<Hr />
<Blog
description="While waiting for an answer look at how we helped other teams"
blogLinks={[
{
path: "migrating-an-enterprise-app-from-angularjs-to-react",
imageUrl: "/images/from-angular-to-react.png",
title: "Migrating an Enterprise App from AngularJS to React",
},
{
path: "how-we-rebuilt-a-legacy-ui-with-zero-downtime",
imageUrl:
"/images/how-we-rebuilt-a-legacy-ui-with-zero-downtime.png",
title:
"How We Rebuilt a Legacy UI With Zero Downtime: A Case Study in Component Libraries and Frontend Guidance",
},
{
path: "using-lago-to-create-a-flexible-billing-system",
imageUrl:
"/images/using-lago-to-create-a-flexible-billing-system-2.png",
title: "Using Lago to Create a Flexible Billing System",
},
]}
/>
</Section>
</Layout>
);
};
export default ContactTemplate;