-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
114 lines (100 loc) · 5.15 KB
/
index.html
File metadata and controls
114 lines (100 loc) · 5.15 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="Dirty Tarheel Fizz Co - Coming Soon! Get ready for refreshing, handcrafted fizzy drinks in North Carolina.">
<meta name="keywords" content="fizz drinks, North Carolina, Tarheel, beverages, coming soon">
<meta name="author" content="Dirty Tarheel Fizz Co">
<!-- Open Graph / Social Media -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://dirtytarheelfiz.com/">
<meta property="og:title" content="Dirty Tarheel Fizz Co - Coming Soon">
<meta property="og:description" content="Get ready for refreshing, handcrafted fizzy drinks in North Carolina.">
<meta property="og:image" content="https://dirtytarheelfiz.com/logo.jpg">
<title>Dirty Tarheel Fizz Co - Coming Soon</title>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800&family=Poppins:wght@300;400;600&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Background drinks image -->
<div class="drinks-background"></div>
<!-- Animated background bubbles -->
<div class="bubbles">
<div class="bubble"></div>
<div class="bubble"></div>
<div class="bubble"></div>
<div class="bubble"></div>
<div class="bubble"></div>
<div class="bubble"></div>
<div class="bubble"></div>
<div class="bubble"></div>
</div>
<div class="container">
<!-- Logo Section -->
<div class="logo-container">
<img src="logo.jpg" alt="Dirty Tarheel Fizz Co Logo" class="logo">
</div>
<!-- Main Content -->
<main class="content">
<h1 class="title">Coming Soon</h1>
<p class="tagline">Something refreshing is brewing in North Carolina</p>
<p class="dtf-tagline">
<span class="dtf-line"><strong>D</strong>eliciously <strong>T</strong>asty <strong>F</strong>izz</span>
<span class="dtf-separator">•</span>
<span class="dtf-line"><strong>D</strong>are <strong>T</strong>o <strong>F</strong>lavor</span>
<span class="dtf-separator">•</span>
<span class="dtf-line"><strong>D</strong>rinks <strong>T</strong>hat <strong>F</strong>izz</span>
</p>
<!-- Email Signup Form -->
<div class="signup-form">
<form id="notifyForm" action="https://formspree.io/f/xjkvkwwb" method="POST">
<div class="input-group">
<input type="email" id="email" name="email" placeholder="Enter your email" required
aria-label="Email address">
<button type="submit" class="btn-primary">
Notify Me
</button>
</div>
<p class="form-message" id="formMessage"></p>
</form>
</div>
<!-- Social Links -->
<div class="social-links">
<a href="https://facebook.com/dirtytarheelfizz" aria-label="Facebook" class="social-link"
target="_blank" rel="noopener">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"></path>
</svg>
</a>
<a href="https://instagram.com/dirtytarheelfizz" aria-label="Instagram" class="social-link"
target="_blank" rel="noopener">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<rect x="2" y="2" width="20" height="20" rx="5" ry="5"></rect>
<path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"></path>
<line x1="17.5" y1="6.5" x2="17.51" y2="6.5"></line>
</svg>
</a>
<a href="https://tiktok.com/@dirtytarheelfizz" aria-label="TikTok" class="social-link" target="_blank"
rel="noopener">
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor">
<path
d="M19.59 6.69a4.83 4.83 0 0 1-3.77-4.25V2h-3.45v13.67a2.89 2.89 0 0 1-5.2 1.74 2.89 2.89 0 0 1 2.31-4.64 2.93 2.93 0 0 1 .88.13V9.4a6.84 6.84 0 0 0-1-.05A6.33 6.33 0 0 0 5 20.1a6.34 6.34 0 0 0 10.86-4.43v-7a8.16 8.16 0 0 0 4.77 1.52v-3.4a4.85 4.85 0 0 1-1-.1z" />
</svg>
</a>
</div>
</main>
<!-- Footer -->
<footer class="footer">
<p>© 2024 Dirty Tarheel Fizz Co. All rights reserved.</p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>