@@ -301,43 +301,15 @@ <h3>📦 Grab the configs</h3>
301301
302302</ ul >
303303
304- < style >
305- ul { list-style : none; margin : 0 ; }
306- .file-block { margin-bottom : 1.5em ; }
307- .file-header { display : flex; flex-direction : column; gap : 0.5em ; }
308- .file-header a { color : # 60a5fa ; text-decoration : none; font-weight : bold; }
309- details summary { cursor : pointer; color : # 60a5fa ; font-size : 0.9em ; }
310- .code-container { position : relative; margin-top : 8px ; }
311- pre { background : # 1e1e1e ; color : # d4d4d4 ; padding : 12px ; border-radius : 8px ; overflow-x : auto; margin : 0 ; font-size : 0.9em ; }
312- .copy-btn {
313- position : absolute; top : 8px ; right : 8px ;
314- background : # 333 ; color : # fff ; border : none;
315- padding : 6px 10px ; border-radius : 4px ;
316- font-size : 0.8em ; cursor : pointer;
317- }
318- .copy-btn : hover { background : # 444 ; }
319- </ style >
320304
321- < script >
322- document . addEventListener ( 'click' , function ( e ) {
323- if ( e . target . classList . contains ( 'copy-btn' ) ) {
324- const targetId = e . target . getAttribute ( 'data-target' ) ;
325- const code = document . getElementById ( targetId ) . innerText ;
326- navigator . clipboard . writeText ( code ) . then ( ( ) => {
327- e . target . textContent = 'Copied!' ;
328- setTimeout ( ( ) => e . target . textContent = 'Copy' , 1500 ) ;
329- } ) ;
330- }
331- } ) ;
332- </ script >
333305
334306</ section >
335307
336308 < h2 > 7. The Bigger Picture</ h2 >
337309 < p > Declarative, Git-driven stacks aren’t tools; they’re a culture.< br >
338310 When everything is code, knowledge lives in the repo, not in someone’s head.< br >
339311 That means faster onboarding, fearless refactors, and - best of all - Friday deploys that don’t ruin weekends.</ p >
340- < p > < strong > Welcome to the Declared World: where the robots do the toil, and we get back to building great games.</ strong > </ p >
312+ < p > < strong > Welcome to the Declared World: </ strong > where the robots do the toil, and we get back to building great games.</ p >
341313
342314 <!-- JavaScript for copy buttons -->
343315 < script >
0 commit comments