-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworkflow-sharing.html
More file actions
325 lines (291 loc) · 8.37 KB
/
workflow-sharing.html
File metadata and controls
325 lines (291 loc) · 8.37 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Workflow & Sharing | Streamn Dad</title>
<meta
name="description"
content="Step-by-step workflow for livestreaming and sharing youth hockey — from pre-game setup to post-game highlights and YouTube Shorts."
/>
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://streamn.dad/workflow-sharing.html" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="preload"
href="https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600&family=Shippori+Mincho:wght@400;600&display=swap"
as="style"
onload="this.onload=null;this.rel='stylesheet'"
/>
<noscript>
<link
href="https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600&family=Shippori+Mincho:wght@400;600&display=swap"
rel="stylesheet"
/>
</noscript>
<style>
:root {
--forest: #1c4b2f;
--evergreen: #2f6b44;
--ice: #f4f7f5;
--ink: #16231c;
--ember: #c89b4b;
--shadow: 0 18px 32px rgba(12, 26, 18, 0.16);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: "Shippori Mincho", "Times New Roman", serif;
background: radial-gradient(circle at top, #ffffff 0%, #eef3ef 40%, #dfe9df 100%);
color: var(--ink);
}
a {
color: inherit;
text-decoration: none;
}
.page {
max-width: 980px;
margin: 0 auto;
padding: 28px clamp(18px, 4vw, 56px) 64px;
display: grid;
gap: 28px;
}
header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
}
header a {
font-family: "Oswald", "Arial Narrow", sans-serif;
text-transform: uppercase;
letter-spacing: 0.12em;
color: var(--forest);
}
nav {
display: flex;
gap: 16px;
font-size: 12px;
letter-spacing: 0.12em;
text-transform: uppercase;
}
.hero {
background: #fff;
border-radius: 24px;
padding: 24px;
box-shadow: var(--shadow);
border: 1px solid rgba(28, 75, 47, 0.12);
display: grid;
gap: 12px;
}
.hero-header {
display: flex;
align-items: center;
gap: 12px;
}
.hero-header img {
width: 48px;
height: auto;
}
.hero h1 {
font-family: "Oswald", "Arial Narrow", sans-serif;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--forest);
}
.hero p {
line-height: 1.7;
}
.info-stack {
display: grid;
gap: 18px;
}
.info-block {
background: #fdfefd;
border-radius: 20px;
padding: 20px;
display: grid;
grid-template-columns: 64px 1fr;
gap: 16px;
border: 1px solid rgba(28, 75, 47, 0.12);
box-shadow: 0 12px 24px rgba(14, 31, 21, 0.12);
}
.icon {
width: 64px;
height: 64px;
border-radius: 16px;
background: linear-gradient(135deg, rgba(31, 78, 52, 0.18), rgba(200, 155, 75, 0.22));
border: 1px solid rgba(28, 75, 47, 0.2);
}
.info-block h2 {
font-family: "Oswald", "Arial Narrow", sans-serif;
letter-spacing: 0.1em;
text-transform: uppercase;
font-size: 16px;
color: var(--evergreen);
margin-bottom: 8px;
}
.info-block p {
line-height: 1.7;
}
.info-block ul {
list-style: none;
display: grid;
gap: 8px;
margin-top: 10px;
}
.info-block li {
position: relative;
padding-left: 16px;
}
.info-block li::before {
content: "";
position: absolute;
left: 0;
top: 9px;
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--ember);
}
footer {
display: flex;
flex-direction: column;
gap: 8px;
font-size: 14px;
color: #344339;
padding-top: 12px;
border-top: 1px solid rgba(22, 35, 28, 0.1);
}
.footer-links {
display: flex;
flex-wrap: wrap;
gap: 12px;
font-size: 12px;
letter-spacing: 0.08em;
text-transform: uppercase;
}
footer a {
color: var(--forest);
font-weight: 600;
}
.tagline {
font-family: "Oswald", "Arial Narrow", sans-serif;
letter-spacing: 0.3em;
text-transform: uppercase;
font-size: 12px;
color: var(--evergreen);
}
@media (max-width: 720px) {
nav {
display: none;
}
.info-block {
grid-template-columns: 1fr;
}
}
</style>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-VB45312ZVK"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-VB45312ZVK');
</script>
</head>
<body>
<div class="page">
<header>
<a href="index.html">Streamn Dad</a>
<nav>
<a href="index.html#guides">Guides</a>
<a href="privacy.html">Privacy</a>
</nav>
</header>
<section class="hero">
<div class="hero-header">
<img src="assets/images/icon-workflow.png" alt="Workflow icon" />
<h1>Workflow & Sharing</h1>
</div>
<p>
The best workflows are fast, repeatable, and easy for families to follow.
</p>
</section>
<section class="info-stack">
<article class="info-block">
<div class="icon"></div>
<div>
<h2>Record while streaming</h2>
<p>Capture a local file so highlights are ready right away.</p>
<ul>
<li>Keep a backup of every game.</li>
<li>Clip the best moments later.</li>
</ul>
</div>
</article>
<article class="info-block">
<div class="icon"></div>
<div>
<h2>Quick highlights</h2>
<p>Short clips are easiest to share with busy families.</p>
<ul>
<li>Pull goals and key plays.</li>
<li>Keep clips under a minute.</li>
</ul>
</div>
</article>
<article class="info-block">
<div class="icon"></div>
<div>
<h2>Recaps and reels</h2>
<p>Bundle the story of the game into a few minutes.</p>
<ul>
<li>Start with a strong moment.</li>
<li>End with a team highlight.</li>
</ul>
</div>
</article>
<article class="info-block">
<div class="icon"></div>
<div>
<h2>Distribution</h2>
<p>Publish where families already spend time.</p>
<ul>
<li>YouTube for full games.</li>
<li>Shorts and reels for highlights.</li>
</ul>
</div>
</article>
<article class="info-block">
<div class="icon"></div>
<div>
<h2>Consistency</h2>
<p>Keep a predictable cadence so people know when to look.</p>
<ul>
<li>Share a link before puck drop.</li>
<li>Post highlights within 24 hours.</li>
</ul>
</div>
</article>
</section>
<footer>
<span class="tagline">Streamn Dad • Minnesota</span>
<div class="footer-links">
<a href="index.html">Home</a>
<a href="why-livestreaming.html">Why Livestreaming</a>
<a href="gear-basics.html">Gear</a>
<a href="software.html">Software</a>
<a href="workflow-sharing.html">Workflow</a>
<a href="story.html">Story</a>
<a href="privacy.html">Privacy</a>
</div>
<span>© 2026 Streamn Dad. All rights reserved.</span>
</footer>
</div>
</body>
</html>