Initial Commit

This commit is contained in:
2026-05-29 14:17:46 -04:00
commit b7d0676d5b
498 changed files with 30308 additions and 0 deletions
@@ -0,0 +1,26 @@
<div class="rowContainer">
@ChildContent
</div>
<style>
.rowContainer {
display: flex;
flex-direction: row;
gap: 30px;
width: 100%;
flex-wrap: wrap;
}
@@media only screen and (max-width: 1025px) {
.rowContainer {
gap: 3px;
flex-direction: column;
}
}
</style>
@code {
[Parameter] public RenderFragment? ChildContent { get; set; }
}