-
Notifications
You must be signed in to change notification settings - Fork 0
/
backup.txt
95 lines (87 loc) · 2.43 KB
/
backup.txt
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
import "./App.css";
import brandlogo from "./assets/Dr.-K-Koh-Aesthetics_black_high-res.png";
const MainPage = () => {
const redirectToLink = () => {
window.open("https://kohaesthetics.janeapp.com", "_blank");
};
return (
<>
<div
id="logo"
className="logo"
style={{
backgroundColor: "#F9F6EE",
width: "100%",
height: "150px",
marginTop: "0",
display: "flex",
alignItems: "center",
justifyContent: "center",
}}
>
<img
src={brandlogo}
className="react-logo"
alt="logo"
style={{
maxWidth: "40%",
width: "700px",
height: "400px",
objectFit: "contain",
}}
/>
</div>
<div
className="appbutton"
id="welcome"
style={{
alignItems: "center",
paddingTop: "50px",
textAlign: "center",
width: "450px",
height: "300px",
justifyContent: "center",
marginLeft: "auto", // Center the div horizontally
marginRight: "auto", // Center the div horizontally
marginTop: "50px",
borderRadius: "10px",
border: "2px solid #050511",
}}
>
<h1 style={{ fontSize: 20, color: "#000000" }}>
Welcome to Koh Aesthetics! <br />
</h1>
<p id="desc" style={{ fontSize: 15, color: "#000000" }}>
Welcome to Dr. Koh Aesthetics! We're here to enhance your natural
beauty with personalized care. Dr. Koh is dedicated to providing
individualized aesthetic solutions that highlight your unique
features. Interested in a personalized consultation? Book an
appointment today!
</p>
<button
id="booking-button"
onClick={redirectToLink}
style={{
backgroundColor: "#FAF9F6",
color: "#000000",
fontWeight: "500",
width: "300px",
}}
>
Book an Appointment
</button>
</div>
</>
);
};
export default MainPage;
<img
src={brandlogo}
className="brand-logo"
alt="logo"
style={{
maxWidth: "100%",
height: "auto",
marginBottom: "20px",
}}
/>