-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject5.html
More file actions
117 lines (108 loc) · 6.3 KB
/
project5.html
File metadata and controls
117 lines (108 loc) · 6.3 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
115
116
117
<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eagle Scout Service Project - Portfolio</title>
<link rel="stylesheet" href="styles.css">
<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=Nunito:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<style>
@font-face {
font-family: 'gg sans';
src: local('Helvetica Neue'), local('Arial');
}
</style>
</head>
<body>
<nav class="navbar">
<div class="nav-container">
<div class="logo"><a href="index.html" style="text-decoration: none; color: inherit;">Portfolio</a></div>
<ul class="nav-menu">
<li><a href="index.html#home" class="nav-link">Home</a></li>
<li><a href="resume.html" class="nav-link">Resume</a></li>
<li><a href="projects.html" class="nav-link">Projects</a></li>
<li><a href="index.html#about" class="nav-link">About</a></li>
<li><a href="index.html#contact" class="nav-link">Contact</a></li>
</ul>
<div class="nav-controls">
<label class="theme-toggle">
<input type="checkbox" id="darkModeToggle" class="theme-checkbox">
<span class="theme-slider"></span>
</label>
</div>
</div>
</nav>
<section class="project-detail">
<div class="container">
<a href="projects.html" class="back-link">← Back to Projects</a>
<h1 class="project-detail-title">Eagle Scout Service Project</h1>
<p class="project-detail-category">Engineering & Fabrication</p>
<div class="project-detail-content">
<div class="project-detail-image">
<!-- Main project image: replace the src with your main project photo path -->
<div class="image-placeholder">
<img src="assets/updated drawing (1)-1.png" alt="Trough Design & Build - main" class="project-detail-main-img zoomable" style="max-width:100%; height:auto; display:block;">
<p style="font-size: 0.9rem; color: var(--text-secondary); margin-top: 0.75rem;"></p>
</div>
</div>
<div class="project-detail-info">
<h2>Overview</h2>
<p>
A structural design and fabrication project involving the creation of four pressure-treated wooden troughs for a working farm.
The project included design drafting, material planning, tool coordination, and leading a team of Scouts through on-site construction.
</p>
<h2>Key Features</h2>
<ul>
<li>Hand-drawn design plans with measurements and structural layout</li>
<li>Material planning with board sizing, screw selection, and cut lists</li>
<li>On-site construction leadership and volunteer coordination</li>
<li>Wood cutting, drilling, assembly, and fastening</li>
<li>Painting and sealing for weather resistance</li>
<li>Full project documentation and workflow planning</li>
</ul>
<h2>Technologies / Tools Used</h2>
<div class="tech-tags">
<span class="tech-tag">Pressure-Treated Lumber</span>
<span class="tech-tag">Power Saws</span>
<span class="tech-tag">Drill Drivers</span>
<span class="tech-tag">Exterior Screws</span>
<span class="tech-tag">Measuring Tools</span>
<span class="tech-tag">Outdoor Paint & Sealant</span>
</div>
<h2>Project Details</h2>
<p>
I designed the troughs on paper, determining dimensions, wood sizing, and screw lengths for structural stability.
After gathering materials, I coordinated a team of Scouts on the farm to complete the build.
We measured and cut all pieces, assembled the structures using exterior-grade screws,
and finished each trough with outdoor paint for durability.
The project combined engineering design, fabrication, and project management to deliver long-lasting structures for farm use.
</p>
<div class="project-detail-images">
<!-- Detail images: replace the src attributes with your images -->
<div class="detail-image-placeholder">
<img src="assets\PXL_20250504_211110290.jpg" alt="Design Sketches" class="zoomable" style="max-width:100%; height:auto; display:block;">
<p style="margin-top:8px; color:var(--text-secondary); font-size:0.95rem;"></p>
</div>
<div class="detail-image-placeholder">
<img src="assets\PXL_20250504_222452216.jpg" alt="Construction Process" class="zoomable" style="max-width:100%; height:auto; display:block;">
<p style="margin-top:8px; color:var(--text-secondary); font-size:0.95rem;"></p>
</div>
<div class="detail-image-placeholder">
<img src="assets\PXL_20250504_171611293.jpg" alt="Finished Troughs" class="zoomable" style="max-width:100%; height:auto; display:block;">
<p style="margin-top:8px; color:var(--text-secondary); font-size:0.95rem;"></p>
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<p>© 2025 Samarth Aradhya</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>