kazzykaned commited on
Commit
9113acd
·
verified ·
1 Parent(s): 9c67857

Create the Mission and Contact pages

Browse files
Files changed (4) hide show
  1. contact.html +169 -0
  2. index.html +3 -3
  3. mission.html +112 -0
  4. products.html +3 -3
contact.html ADDED
@@ -0,0 +1,169 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Contact Us | Pleiadian Collective</title>
7
+ <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=Space+Mono&display=swap" rel="stylesheet">
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
9
+ <style>
10
+ :root {
11
+ --purple: #5a2d82;
12
+ --teal: #2bb3b3;
13
+ --deep-space: #0a0a1a;
14
+ --starlight: #fffae6;
15
+ }
16
+ body {
17
+ font-family: 'Montserrat', sans-serif;
18
+ margin: 0;
19
+ padding: 0;
20
+ background-color: var(--deep-space);
21
+ color: var(--starlight);
22
+ background-image: radial-gradient(circle at 50% 50%, rgba(90, 45, 130, 0.1) 0%, transparent 20%);
23
+ }
24
+ .navbar {
25
+ display: flex;
26
+ justify-content: space-between;
27
+ padding: 20px 5%;
28
+ align-items: center;
29
+ border-bottom: 1px solid var(--teal);
30
+ }
31
+ .logo {
32
+ font-family: 'Space Mono', monospace;
33
+ font-size: 1.8rem;
34
+ color: var(--teal);
35
+ }
36
+ .nav-links a {
37
+ margin: 0 15px;
38
+ color: var(--starlight);
39
+ text-decoration: none;
40
+ transition: color 0.3s;
41
+ }
42
+ .nav-links a:hover {
43
+ color: var(--teal);
44
+ }
45
+ .contact-hero {
46
+ text-align: center;
47
+ padding: 80px 5%;
48
+ background-image: url('http://static.photos/space/1200x630/44'), linear-gradient(to bottom, rgba(10,10,26,0.7), rgba(10,10,26,1));
49
+ background-blend-mode: overlay;
50
+ background-size: cover;
51
+ }
52
+ .contact-container {
53
+ max-width: 900px;
54
+ margin: 50px auto;
55
+ padding: 0 5%;
56
+ display: grid;
57
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
58
+ gap: 50px;
59
+ }
60
+ .contact-info {
61
+ text-align: center;
62
+ }
63
+ .contact-info i {
64
+ font-size: 2rem;
65
+ color: var(--teal);
66
+ margin-bottom: 20px;
67
+ }
68
+ .contact-form {
69
+ background: rgba(10, 10, 26, 0.7);
70
+ padding: 30px;
71
+ border-radius: 8px;
72
+ border: 1px solid var(--teal);
73
+ }
74
+ .form-group {
75
+ margin-bottom: 20px;
76
+ }
77
+ label {
78
+ display: block;
79
+ margin-bottom: 8px;
80
+ }
81
+ input, textarea {
82
+ width: 100%;
83
+ padding: 12px;
84
+ background: var(--deep-space);
85
+ border: 1px solid var(--teal);
86
+ color: var(--starlight);
87
+ border-radius: 4px;
88
+ }
89
+ button {
90
+ background: var(--teal);
91
+ color: var(--deep-space);
92
+ border: none;
93
+ padding: 12px 30px;
94
+ cursor: pointer;
95
+ font-size: 1rem;
96
+ transition: opacity 0.3s;
97
+ }
98
+ button:hover {
99
+ opacity: 0.8;
100
+ }
101
+ footer {
102
+ text-align: center;
103
+ padding: 30px 0;
104
+ border-top: 1px solid var(--teal);
105
+ margin-top: 50px;
106
+ }
107
+ </style>
108
+ </head>
109
+ <body>
110
+ <nav class="navbar">
111
+ <div class="logo">Pleiadian Collective</div>
112
+ <div class="nav-links">
113
+ <a href="index.html">Home</a>
114
+ <a href="products.html">Shop</a>
115
+ <a href="mission.html">Mission</a>
116
+ <a href="contact.html">Contact</a>
117
+ <a href="#"><i class="fas fa-shopping-cart"></i></a>
118
+ </div>
119
+ </nav>
120
+
121
+ <section class="contact-hero">
122
+ <h1>Connect With Us</h1>
123
+ <p>We'd love to hear from our cosmic family</p>
124
+ </section>
125
+
126
+ <div class="contact-container">
127
+ <div class="contact-info">
128
+ <i class="fas fa-globe"></i>
129
+ <h3>Cosmic Headquarters</h3>
130
+ <p>123 Starseed Lane<br>Sedona, AZ 86336</p>
131
+
132
+ <i class="fas fa-envelope" style="margin-top: 30px;"></i>
133
+ <h3>Email Us</h3>
134
+ <p>contact@pleiadiancollective.com</p>
135
+
136
+ <i class="fas fa-phone" style="margin-top: 30px;"></i>
137
+ <h3>Call Us</h3>
138
+ <p>(555) 123-4567</p>
139
+ </div>
140
+
141
+ <div class="contact-form">
142
+ <h3>Send a Message</h3>
143
+ <form>
144
+ <div class="form-group">
145
+ <label for="name">Name</label>
146
+ <input type="text" id="name" required>
147
+ </div>
148
+ <div class="form-group">
149
+ <label for="email">Email</label>
150
+ <input type="email" id="email" required>
151
+ </div>
152
+ <div class="form-group">
153
+ <label for="subject">Subject</label>
154
+ <input type="text" id="subject" required>
155
+ </div>
156
+ <div class="form-group">
157
+ <label for="message">Message</label>
158
+ <textarea id="message" rows="5" required></textarea>
159
+ </div>
160
+ <button type="submit">Send Message</button>
161
+ </form>
162
+ </div>
163
+ </div>
164
+
165
+ <footer>
166
+ <p>&copy; 2023 Pleiadian Collective. All rights reserved.</p>
167
+ </footer>
168
+ </body>
169
+ </html>
index.html CHANGED
@@ -88,9 +88,9 @@
88
  <div class="nav-links">
89
  <a href="index.html">Home</a>
90
  <a href="products.html">Shop</a>
91
- <a href="#">Mission</a>
92
- <a href="#">Contact</a>
93
- <a href="#"><i class="fas fa-shopping-cart"></i></a>
94
  </div>
95
  </nav>
96
  <section class="hero">
 
88
  <div class="nav-links">
89
  <a href="index.html">Home</a>
90
  <a href="products.html">Shop</a>
91
+ <a href="mission.html">Mission</a>
92
+ <a href="contact.html">Contact</a>
93
+ <a href="#"><i class="fas fa-shopping-cart"></i></a>
94
  </div>
95
  </nav>
96
  <section class="hero">
mission.html ADDED
@@ -0,0 +1,112 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Our Mission | Pleiadian Collective</title>
7
+ <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=Space+Mono&display=swap" rel="stylesheet">
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
9
+ <style>
10
+ :root {
11
+ --purple: #5a2d82;
12
+ --teal: #2bb3b3;
13
+ --deep-space: #0a0a1a;
14
+ --starlight: #fffae6;
15
+ }
16
+ body {
17
+ font-family: 'Montserrat', sans-serif;
18
+ margin: 0;
19
+ padding: 0;
20
+ background-color: var(--deep-space);
21
+ color: var(--starlight);
22
+ background-image: radial-gradient(circle at 50% 50%, rgba(90, 45, 130, 0.1) 0%, transparent 20%);
23
+ }
24
+ .navbar {
25
+ display: flex;
26
+ justify-content: space-between;
27
+ padding: 20px 5%;
28
+ align-items: center;
29
+ border-bottom: 1px solid var(--teal);
30
+ }
31
+ .logo {
32
+ font-family: 'Space Mono', monospace;
33
+ font-size: 1.8rem;
34
+ color: var(--teal);
35
+ }
36
+ .nav-links a {
37
+ margin: 0 15px;
38
+ color: var(--starlight);
39
+ text-decoration: none;
40
+ transition: color 0.3s;
41
+ }
42
+ .nav-links a:hover {
43
+ color: var(--teal);
44
+ }
45
+ .mission-hero {
46
+ text-align: center;
47
+ padding: 80px 5%;
48
+ background-image: url('http://static.photos/space/1200x630/43'), linear-gradient(to bottom, rgba(10,10,26,0.7), rgba(10,10,26,1));
49
+ background-blend-mode: overlay;
50
+ background-size: cover;
51
+ }
52
+ .mission-content {
53
+ max-width: 900px;
54
+ margin: 50px auto;
55
+ padding: 0 5%;
56
+ line-height: 1.8;
57
+ }
58
+ .mission-section {
59
+ margin-bottom: 50px;
60
+ }
61
+ .mission-section h2 {
62
+ color: var(--teal);
63
+ margin-bottom: 20px;
64
+ font-size: 1.8rem;
65
+ }
66
+ footer {
67
+ text-align: center;
68
+ padding: 30px 0;
69
+ border-top: 1px solid var(--teal);
70
+ margin-top: 50px;
71
+ }
72
+ </style>
73
+ </head>
74
+ <body>
75
+ <nav class="navbar">
76
+ <div class="logo">Pleiadian Collective</div>
77
+ <div class="nav-links">
78
+ <a href="index.html">Home</a>
79
+ <a href="products.html">Shop</a>
80
+ <a href="mission.html">Mission</a>
81
+ <a href="contact.html">Contact</a>
82
+ <a href="#"><i class="fas fa-shopping-cart"></i></a>
83
+ </div>
84
+ </nav>
85
+
86
+ <section class="mission-hero">
87
+ <h1>Our Cosmic Mission</h1>
88
+ <p>Awakening humanity through sacred galactic designs</p>
89
+ </section>
90
+
91
+ <div class="mission-content">
92
+ <div class="mission-section">
93
+ <h2>Starseed Origins</h2>
94
+ <p>The Pleiadian Collective was founded by starseeds who remember their cosmic origins. Our mission is to help awaken others to their true galactic heritage through sacred symbols, high-vibration fabrics, and designs that activate DNA.</p>
95
+ </div>
96
+
97
+ <div class="mission-section">
98
+ <h2>Conscious Creation</h2>
99
+ <p>Each piece is created with intention, using sustainable materials and infused with sacred geometry. Our manufacturing partners are carefully selected for their ethical practices and alignment with our vision.</p>
100
+ </div>
101
+
102
+ <div class="mission-section">
103
+ <h2>Galactic Community</h2>
104
+ <p>5% of all proceeds fund programs that support starseed awakening and cosmic education. We host regular community gatherings both online and in sacred locations around the world.</p>
105
+ </div>
106
+ </div>
107
+
108
+ <footer>
109
+ <p>&copy; 2023 Pleiadian Collective. All rights reserved.</p>
110
+ </footer>
111
+ </body>
112
+ </html>
products.html CHANGED
@@ -102,9 +102,9 @@
102
  <div class="nav-links">
103
  <a href="index.html">Home</a>
104
  <a href="products.html">Shop</a>
105
- <a href="#">Mission</a>
106
- <a href="#">Contact</a>
107
- <a href="#"><i class="fas fa-shopping-cart"></i></a>
108
  </div>
109
  </nav>
110
 
 
102
  <div class="nav-links">
103
  <a href="index.html">Home</a>
104
  <a href="products.html">Shop</a>
105
+ <a href="mission.html">Mission</a>
106
+ <a href="contact.html">Contact</a>
107
+ <a href="#"><i class="fas fa-shopping-cart"></i></a>
108
  </div>
109
  </nav>
110