Skip to content

Commit

Permalink
Init generation
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyler-Hilbert committed Dec 13, 2023
0 parents commit 398c062
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<title>3D Printed Guitars</title>
</head>

<body class="bg-blue-200 text-gray-800 font-sans">
<div class="container mx-auto px-4 sm:px-8 py-8">
<h1 class="text-4xl font-bold mb-8">3D Printed Guitars</h1>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="mb-8">
<a href="imgs/1.jpeg" target="_blank">
<img src="imgs/1.jpeg" alt="The Prusacaster - How to Design and 3D Print an Electric Guitar that plays well <$150" class="w-full h-64 object-cover rounded-lg">
</a>
<p class="mt-4 text-gray-700">The Prusacaster – How to Design and 3D Print an Electric Guitar that plays well <$150</p>
</div>
<div class="mb-8">
<a href="imgs/2.webp" target="_blank">
<img src="imgs/2.webp" alt="Recycled Sawdust Guitar" class="w-full h-64 object-cover rounded-lg">
</a>
<p class="mt-4 text-gray-700">This 3D-printed wood guitar is made from recycled sawdust</p>
</div>
<div class="mb-8">
<a href="imgs/3.jpeg" target="_blank">
<img src="imgs/3.jpeg" alt="3D Printing a Guitar" class="w-full h-64 object-cover rounded-lg">
</a>
<p class="mt-4 text-gray-700">3D Printing a Guitar</p>
</div>
<div class="mb-8">
<a href="imgs/4.jpeg" target="_blank">
<img src="imgs/4.jpeg" alt="Unboxing a 3D Printed Stratocaster" class="w-full h-64 object-cover rounded-lg">
</a>
<p class="mt-4 text-gray-700">Unboxing a 3D Printed Stratocaster...</p>
</div>
<div class="mb-8">
<a href="imgs/5.jpeg" target="_blank">
<img src="imgs/5.jpeg" alt="Electric Guitar" class="w-full h-64 object-cover rounded-lg">
</a>
<p class="mt-4 text-gray-700">Electric Guitar</p>
</div>
<div class="mb-8">
<a href="imgs/6.jpeg" target="_blank">
<img src="imgs/6.jpeg" alt="3D Printed Guitar Body" class="w-full h-64 object-cover rounded-lg">
</a>
<p class="mt-4 text-gray-700">I've been wanting to 3D print a guitar body ever since high school. After many years of procrastination, I finally made one. Couldn't be more pleased with the end product.</p>
</div>
</div>
</div>
<footer class="bg-gray-800 text-white text-center py-4">
<p>Generated Webpage -- Contact [email protected] for full dataset</p>
</footer>
</body>
</html>

0 comments on commit 398c062

Please sign in to comment.