Mirror of
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: under developement banner

+15
+15
src/layouts/LunariaLayout.astro
··· 36 36 /> 37 37 </head> 38 38 <body> 39 + <div class="dev-banner"> 40 + 🚧 This website is under development. Some important features are still 41 + missing. 42 + </div> 39 43 <main> 40 44 <div class="limit-to-viewport"> 41 45 <h1>{title}</h1> ··· 49 53 </html> 50 54 51 55 <style> 56 + body { 57 + margin: 0; 58 + } 59 + .dev-banner { 60 + background-color: #fffbeb; 61 + color: #92400e; 62 + padding: 1rem; 63 + text-align: center; 64 + font-weight: 500; 65 + border-bottom: 1px solid #facc15; 66 + } 52 67 main { 53 68 max-width: 80ch; 54 69 margin-inline: auto;