-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (84 loc) · 3.8 KB
/
index.html
File metadata and controls
89 lines (84 loc) · 3.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<title>Welcome</title>
<!-- Link to your CSS file -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>SquatchCraft Apps</h1>
<p>Explore a suite of thoughtfully crafted applications that inspire creativity, productivity, and spiritual growth.</p>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="everydaygrace.html">Everyday Grace</a></li>
<li><a href="https://www.greatdestinationvacations.com">Great Destinations Vactations</a></li>
<li><a href="powerplayai.html">Power Play AI</a></li>
<li><a href="copyclipper.html">CopyClipper</a></li>
<li><a href="quantumbob.html">QuantumBob</a></li>
<li><a href="syncboy.html">SyncBoy</a></li>
<li><a href="bidsnap.html">BidSnap</a></li>
<li><a href="tanklab.html">TankLab</a></li>
</ul>
<button id="theme-toggle" class="theme-toggle" aria-label="Toggle theme"></button>
</nav>
</header>
<!-- Main content area -->
<main class="container">
<section>
<h2>Featured Apps</h2>
<p class="subtitle">From personal reflection to AI-driven productivity, these apps are designed with your needs in mind.</p>
<div class="cards mt-2">
<div class="card">
<h3>Everyday Grace</h3>
<p>Foster daily reflection, gratitude, and positivity with simple journaling, uplifting prompts, and customized devotionals.</p>
<a class="btn" href="everydaygrace.html">Learn More</a>
</div>
<div class="card">
<h3>Great Destinations Vacations</h3>
<p>A website built for a botique vacation rentals company.</p>
<a class="btn" href="https://www.greatdestinationvacations.com">Learn More</a>
</div>
<div class="card">
<h3>Power Play AI</h3>
<p>Boost your lottery picks with AI-driven statistical analysis.</p>
<a class="btn" href="powerplayai.html">Learn More</a>
</div>
<div class="card">
<h3>CopyClipper</h3>
<p>CopyClipper makes it effortless to share your code with AI assistants for debugging, refactoring, or feature development.</p>
<a class="btn" href="copyclipper.html">Learn More</a>
</div>
<div class="card">
<h3>QuantumBob</h3>
<p>Guess quantum measurement outcomes and compete against an AI powered by real entanglement data from IBM's quantum processor. Can you beat quantum physics?</p>
<a class="btn" href="quantumbob.html">Learn More</a>
</div>
<div class="card">
<h3>SyncBoy</h3>
<p>A Game Boy, Game Boy Color, and Game Boy Advance emulator for iPhone and Apple Watch with link cable multiplayer, AI play, and Game Boy Camera support.</p>
<a class="btn" href="syncboy.html">Learn More</a>
</div>
<div class="card">
<h3>BidSnap</h3>
<p>A CRM for power washing, lawn care, and outdoor service businesses. Create estimates in 60 seconds, send invoices, track jobs, and get paid from your iPhone.</p>
<a class="btn" href="bidsnap.html">Learn More</a>
</div>
<div class="card">
<h3>TankLab</h3>
<p>Your all-in-one aquarium management app. Track water parameters, scan test strips with AI, manage livestock, schedule maintenance, and get expert advice from an AI assistant that knows your tank.</p>
<a class="btn" href="tanklab.html">Learn More</a>
</div>
</div>
</section>
</main>
<footer>
<p>© 2025 SquatchCraft LLC - All Rights Reserved</p>
<p>Crafted with passion and purpose.</p>
</footer>
<script src="script.js"></script>
</body>
</html>