|
| 1 | +--- |
| 2 | +title: "Tutorials" |
| 3 | +--- |
| 4 | + |
| 5 | +```{=html} |
| 6 | +<style> |
| 7 | + body { |
| 8 | + font-family: Arial, sans-serif; |
| 9 | + padding: 20px; |
| 10 | + display: flex; |
| 11 | + justify-content: center; |
| 12 | + } |
| 13 | + .grid { |
| 14 | + display: grid; |
| 15 | + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); |
| 16 | + gap: 20px; |
| 17 | + max-width: 900px; |
| 18 | + width: 100%; |
| 19 | + } |
| 20 | + .card { |
| 21 | + padding: 20px; |
| 22 | + border-radius: 10px; |
| 23 | + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); |
| 24 | + background-color: white; |
| 25 | + text-align: center; |
| 26 | + cursor: pointer; |
| 27 | + text-decoration: none; |
| 28 | + color: inherit; |
| 29 | + display: flex; |
| 30 | + flex-direction: column; |
| 31 | + align-items: center; |
| 32 | + } |
| 33 | + .card h2 { |
| 34 | + font-size: 1.25rem; |
| 35 | + font-weight: bold; |
| 36 | + margin-bottom: 10px; |
| 37 | + } |
| 38 | + .card p { |
| 39 | + font-size: 0.875rem; |
| 40 | + color: #555; |
| 41 | + margin-bottom: 10px; |
| 42 | + } |
| 43 | + .card .last-updated { |
| 44 | + font-size: 0.75rem; |
| 45 | + color: #999; |
| 46 | + margin-bottom: 15px; |
| 47 | + } |
| 48 | + .button { |
| 49 | + display: inline-block; |
| 50 | + padding: 10px 15px; |
| 51 | + background-color: #007bff; |
| 52 | + color: white; |
| 53 | + text-decoration: none; |
| 54 | + border-radius: 5px; |
| 55 | + margin-top: auto; |
| 56 | + } |
| 57 | +</style> |
| 58 | +``` |
| 59 | + |
| 60 | +## Express-Only Tutorials |
| 61 | + |
| 62 | +Shiny Express is the easiest and quickest way to start with Shiny. |
| 63 | +Create applications at the speed of thought. |
| 64 | + |
| 65 | +```{=html} |
| 66 | +<div class="grid"> |
| 67 | + <a href="intro-express/1-welcome.html" class="card"> |
| 68 | + <h2>Getting Started with Shiny</h2> |
| 69 | + <p>Install and build your first Shiny Application.</p> |
| 70 | + <p class="last-updated">Updated: Feb 14, 2024</p> |
| 71 | + <span class="button">Start Tutorial</span> |
| 72 | + </a> |
| 73 | +</div> |
| 74 | +``` |
| 75 | + |
| 76 | +## Express and Core Tutorials |
| 77 | + |
| 78 | +Here are the more general tutorials to get you started with all things Shiny. |
| 79 | + |
| 80 | +```{=html} |
| 81 | +<div class="grid"> |
| 82 | + <a href="intro-express/1-welcome.html" class="card"> |
| 83 | + <h2>Shiny Express to Shiny Core</h2> |
| 84 | + <p>Learn how to transition from Shiny Express to Shiny Core.</p> |
| 85 | + <p class="last-updated">Updated: Feb 5, 2024</p> |
| 86 | + <span class="button">Start Tutorial</span> |
| 87 | + </a> |
| 88 | + <a href="intro-express/1-welcome.html" class="card"> |
| 89 | + <h2>Shiny Modules</h2> |
| 90 | + <p>Create Shiny Modules to make more maintanable applications.</p> |
| 91 | + <p class="last-updated">Updated: Mar 15, 2024</p> |
| 92 | + <span class="button">Start Tutorial</span> |
| 93 | + </a> |
| 94 | + <a href="intro-express/1-welcome.html" class="card"> |
| 95 | + <h2>Make your own component</h2> |
| 96 | + <p>Create your own custom javasscript components.</p> |
| 97 | + <p class="last-updated">Updated: Apr 20, 2024</p> |
| 98 | + <span class="button">Start Tutorial</span> |
| 99 | + </a> |
| 100 | + <a href="intro-express/1-welcome.html" class="card"> |
| 101 | + <h2>Testing your application</h2> |
| 102 | + <p>Write unit tests and end-to-end tests with pytest and playwright.</p> |
| 103 | + <p class="last-updated">Updated: Apr 20, 2024</p> |
| 104 | + <span class="button">Start Tutorial</span> |
| 105 | + </a> |
| 106 | +</div> |
| 107 | +``` |
| 108 | + |
| 109 | +## Core-Only Tutorials |
| 110 | + |
| 111 | +Shiny Core provides you all the flexibility and complexity you need. |
| 112 | +The syntax is a bit more verbose, |
| 113 | +but you can create more complex applications using the core syntax. |
| 114 | + |
| 115 | +```{=html} |
| 116 | +<div class="grid"> |
| 117 | + <a href="intro-express/1-welcome.html" class="card"> |
| 118 | + <h2>Getting Started with Shiny</h2> |
| 119 | + <p>Install and build your first Shiny Application with the Core syntax.</p> |
| 120 | + <p class="last-updated">Updated: Feb 14, 2024</p> |
| 121 | + <span class="button">Start Tutorial</span> |
| 122 | + </a> |
| 123 | +</div> |
| 124 | +``` |
0 commit comments