-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathr1mini.html
127 lines (110 loc) · 3.24 KB
/
r1mini.html
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OnlySquatch - Your Ultimate Life & Business Coach</title>
<!-- Font from your existing code -->
<link href="https://fonts.googleapis.com/css2?family=Sasquatch:wght@300;400;600&display=swap"
rel="stylesheet">
<style>
:root {
--primary-color: #ff6b6b;
--secondary-color: #4ecdc4;
--dark-color: #2d3748;
--light-color: #f9f4f0;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Sasquatch', sans-serif;
}
body {
background-color: var(--light-color);
color: var(--dark-color);
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 3rem;
}
.logo img {
width: 150px;
height: 150px;
object-fit: cover;
border-radius: 10px;
margin-right: 2rem;
}
nav a {
text-decoration: none;
color: var(--dark-color);
font-weight: bold;
}
main {
display: grid;
gap: 2rem;
}
.featured-content {
background-image: url("https://github.com/johnowhitaker/onlysquatch/blob/main/squatch1.jpg");
background-size: cover;
background-position: center;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.get-started-button {
padding: 1rem 2rem;
font-size: 1.5rem;
border-radius: 5px;
background-color: var(--primary-color);
color: white;
cursor: pointer;
transition: all 0.3s ease;
}
.get-started-button:hover {
transform: scale(1.1);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
footer {
text-align: center;
margin-top: 2rem;
padding: 1rem;
background-color: var(--dark-color);
}
.hidden {
display: none;
}
</style>
</head>
<body>
<header>
<div class="container">
<div style="width: 50%; text-align: center;">
<img src="https://github.com/johnowhitaker/onlysquatch/blob/main/squatch1.jpg" alt="Sasquatch
Zoom Call" class="logo">
</div>
<nav>
<a href="#" class="logo">OnlySquatch</a>
</nav>
</div>
</header>
<main class="container">
<section class="featured-content">
<h1 style="text-align: center;">Hi! I'm Sasquatch...</h1>
<p>Your ultimate life and business coach</p>
</section>
<button class="get-started-button">Get Started on OnlyFans</button>
</main>
<footer>
OnlySquatch Coaches, Inc. | Privacy Policy | Terms of Service
</footer>
</body>
</html>