diff --git a/src/static/captive_portal_24dp_E8EAED_FILL0_wght400_GRAD0_opsz24.png b/src/static/captive_portal_24dp_E8EAED_FILL0_wght400_GRAD0_opsz24.png new file mode 100644 index 0000000..0908872 Binary files /dev/null and b/src/static/captive_portal_24dp_E8EAED_FILL0_wght400_GRAD0_opsz24.png differ diff --git a/src/static/github-mark-white.png b/src/static/github-mark-white.png new file mode 100644 index 0000000..50b8175 Binary files /dev/null and b/src/static/github-mark-white.png differ diff --git a/src/static/tailwind.css b/src/static/tailwind.css index f40557c..f934900 100644 --- a/src/static/tailwind.css +++ b/src/static/tailwind.css @@ -521,6 +521,9 @@ } } @layer utilities { + .collapse { + visibility: collapse; + } .invisible { visibility: hidden; } @@ -590,6 +593,9 @@ .mb-4 { margin-bottom: calc(var(--spacing) * 4); } + .block { + display: block; + } .contents { display: contents; } @@ -602,6 +608,18 @@ .hidden { display: none; } + .inline-block { + display: inline-block; + } + .inline-flex { + display: inline-flex; + } + .list-item { + display: list-item; + } + .table { + display: table; + } .aspect-\[1\/2\] { aspect-ratio: 1/2; } @@ -656,6 +674,9 @@ .min-w-48 { min-width: calc(var(--spacing) * 48); } + .border-collapse { + border-collapse: collapse; + } .transform { transform: var(--tw-rotate-x) var(--tw-rotate-y) var(--tw-rotate-z) var(--tw-skew-x) var(--tw-skew-y); } @@ -665,12 +686,18 @@ .cursor-pointer { cursor: pointer; } + .resize { + resize: both; + } .grid-cols-\[repeat\(auto-fill\,minmax\(250px\,1fr\)\)\] { grid-template-columns: repeat(auto-fill,minmax(250px,1fr)); } .flex-col { flex-direction: column; } + .flex-wrap { + flex-wrap: wrap; + } .items-center { align-items: center; } @@ -695,6 +722,9 @@ .overflow-x-auto { overflow-x: auto; } + .rounded-full { + border-radius: calc(infinity * 1px); + } .rounded-sm { border-radius: var(--radius-sm); } @@ -702,6 +732,10 @@ border-bottom-right-radius: var(--radius-lg); border-bottom-left-radius: var(--radius-lg); } + .border { + border-style: var(--tw-border-style); + border-width: 1px; + } .bg-\[\#faebeb\] { background-color: #faebeb; } @@ -714,6 +748,9 @@ .bg-gray-400\/50 { background-color: color-mix(in oklab, var(--color-gray-400) 50%, transparent); } + .bg-orange-800 { + background-color: var(--color-orange-800); + } .bg-orange-800\/50 { background-color: color-mix(in oklab, var(--color-orange-800) 50%, transparent); } @@ -745,6 +782,10 @@ font-size: var(--text-4xl); line-height: var(--tw-leading, var(--text-4xl--line-height)); } + .text-lg { + font-size: var(--text-lg); + line-height: var(--tw-leading, var(--text-lg--line-height)); + } .text-xl { font-size: var(--text-xl); line-height: var(--tw-leading, var(--text-xl--line-height)); @@ -774,6 +815,10 @@ .opacity-30 { opacity: 30%; } + .outline { + outline-style: var(--tw-outline-style); + outline-width: 1px; + } .filter { filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,); } @@ -906,6 +951,11 @@ object-fit: cover; } } + .\[\&\;\:not\(\:fullscreen\)\]\:object-cover { + &:not(:fullscreen) { + object-fit: cover; + } + } } .material-symbols--arrow-forward-rounded { display: inline-block; @@ -1068,10 +1118,20 @@ inherits: false; initial-value: skewY(0); } +@property --tw-border-style { + syntax: "*"; + inherits: false; + initial-value: solid; +} @property --tw-font-weight { syntax: "*"; inherits: false; } +@property --tw-outline-style { + syntax: "*"; + inherits: false; + initial-value: solid; +} @property --tw-blur { syntax: "*"; inherits: false; diff --git a/src/templates/Components/Footer.tsx b/src/templates/Components/Footer.tsx new file mode 100644 index 0000000..818a0d6 --- /dev/null +++ b/src/templates/Components/Footer.tsx @@ -0,0 +1,36 @@ +export default function Footer() { + return ( +