mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
Relocate the Mintlify tree to docs/public and consolidate internal docs under docs/internal. Update build scripts, tests, CI filters, README references, and local docs skills to follow the new layout.
183 lines
13 KiB
HTML
183 lines
13 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=1280">
|
|
<title>Fabro — Social Card</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
html, body {
|
|
width: 1280px;
|
|
height: 640px;
|
|
overflow: hidden;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
.card {
|
|
width: 1280px;
|
|
height: 640px;
|
|
background: #0F1729;
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* ── Diamond mesh pattern ── */
|
|
.mesh {
|
|
position: absolute;
|
|
inset: 0;
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='70'%3E%3Cpath d='M60,0 L120,35 L60,70 L0,35 Z' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='0.8'/%3E%3C/svg%3E");
|
|
background-size: 120px 70px;
|
|
}
|
|
|
|
/* ── Ambient radial glow ── */
|
|
.glow {
|
|
position: absolute;
|
|
width: 900px;
|
|
height: 500px;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
background: radial-gradient(
|
|
ellipse at center,
|
|
rgba(103, 178, 215, 0.10) 0%,
|
|
rgba(103, 178, 215, 0.04) 40%,
|
|
transparent 70%
|
|
);
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* ── Top-edge gradient bar ── */
|
|
.top-bar {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 4px;
|
|
background: linear-gradient(
|
|
90deg,
|
|
#495669 0%,
|
|
#66808e 20%,
|
|
#7882b4 40%,
|
|
#67b2d7 60%,
|
|
#b1cbcd 80%,
|
|
#c4dede 100%
|
|
);
|
|
}
|
|
|
|
/* ── Content ── */
|
|
.content {
|
|
position: relative;
|
|
z-index: 2;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-align: center;
|
|
padding: 40px;
|
|
}
|
|
|
|
.logotype {
|
|
width: 820px;
|
|
height: auto;
|
|
filter: drop-shadow(0 4px 24px rgba(103, 178, 215, 0.18));
|
|
}
|
|
|
|
/* ── Gradient divider ── */
|
|
.divider {
|
|
width: 260px;
|
|
height: 2px;
|
|
margin: 36px 0 34px;
|
|
background: linear-gradient(
|
|
90deg,
|
|
transparent 0%,
|
|
#495669 15%,
|
|
#67b2d7 50%,
|
|
#c4dede 85%,
|
|
transparent 100%
|
|
);
|
|
border-radius: 1px;
|
|
}
|
|
|
|
.tagline {
|
|
font-family: 'Outfit', sans-serif;
|
|
font-size: 42px;
|
|
font-weight: 400;
|
|
color: #A8B5C5;
|
|
line-height: 1.35;
|
|
max-width: 900px;
|
|
}
|
|
|
|
/* ── Noise overlay for texture ── */
|
|
.noise {
|
|
position: absolute;
|
|
inset: 0;
|
|
opacity: 0.04;
|
|
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
|
|
background-size: 256px 256px;
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* ── Bottom-edge subtle gradient ── */
|
|
.bottom-fade {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 120px;
|
|
background: linear-gradient(to top, rgba(15, 23, 41, 0.6), transparent);
|
|
pointer-events: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="card">
|
|
<!-- Background layers -->
|
|
<div class="mesh"></div>
|
|
<div class="glow"></div>
|
|
<div class="noise"></div>
|
|
<div class="bottom-fade"></div>
|
|
<div class="top-bar"></div>
|
|
|
|
<!-- Content -->
|
|
<div class="content">
|
|
<!-- Full logotype: symbol + FABRO wordmark -->
|
|
<svg class="logotype" viewBox="0 0 1500 348" xmlns="http://www.w3.org/2000/svg">
|
|
<defs>
|
|
<!-- Symbol gradient: tighter coordinates matching symbol.svg -->
|
|
<linearGradient id="gs" gradientUnits="userSpaceOnUse" x1="300" y1="0" x2="0" y2="400">
|
|
<stop offset="0" stop-color="#c4dede"/>
|
|
<stop offset="0.2" stop-color="#b1cbcd"/>
|
|
<stop offset="0.4" stop-color="#67b2d7"/>
|
|
<stop offset="0.6" stop-color="#7882b4"/>
|
|
<stop offset="0.8" stop-color="#66808e"/>
|
|
<stop offset="1" stop-color="#495669"/>
|
|
</linearGradient>
|
|
<!-- Text gradient: spans the full wordmark -->
|
|
<linearGradient id="gt" gradientUnits="userSpaceOnUse" x1="1200" y1="0" x2="0" y2="400">
|
|
<stop offset="0" stop-color="#c4dede"/>
|
|
<stop offset="0.2" stop-color="#b1cbcd"/>
|
|
<stop offset="0.4" stop-color="#67b2d7"/>
|
|
<stop offset="0.6" stop-color="#7882b4"/>
|
|
<stop offset="0.8" stop-color="#66808e"/>
|
|
<stop offset="1" stop-color="#495669"/>
|
|
</linearGradient>
|
|
</defs>
|
|
<path fill="url(#gs)" d="M1 237 L62 272 L61 348 L0 312 Z M98 257 L132 275 L132 312 L71 347 L70 272 Z M202 168 L201 230 L141 264 L142 202 Z M70 169 L132 203 L132 264 L70 230 Z M70 241 L90 251 L70 262 Z M3 129 L63 164 L61 262 L1 227 Z M137 125 L196 160 L137 195 L78 160 Z M271 44 L272 119 L211 154 L210 79 Z M132 43 L132 118 L71 153 L70 78 Z M142 43 L202 77 L201 152 L141 118 Z M1 44 L62 78 L62 152 L1 118 Z M206 0 L266 36 L206 72 L146 36 Z M66 1 L126 36 L66 71 L6 36 Z"/>
|
|
<path fill="url(#gt)" transform="translate(40, 0) translate(364, 174) scale(1.25) translate(-364, -174)" d="M1138.75 88.0909C1143.29 88.0309 1150.49 88.4809 1154.75 89.0909C1159.01 89.6909 1165.42 91.0808 1169 92.1808C1172.58 93.2708 1179.1 95.9901 1183.5 98.2101C1187.9 100.44 1193.97 103.94 1197 106C1200.03 108.06 1204.77 112.16 1207.55 115.12C1210.33 118.07 1214.45 123.19 1216.69 126.49C1218.94 129.79 1222.36 136.31 1224.3 140.99C1226.32 145.85 1228.56 153.77 1229.54 159.49C1230.76 166.65 1231.09 172.47 1230.7 179.99C1230.39 185.92 1229.21 193.97 1227.98 198.49C1226.79 202.89 1224.9 208.29 1223.78 210.49C1222.65 212.69 1219.77 217.42 1217.36 220.99C1214.95 224.56 1211.97 228.88 1210.74 230.58C1209.51 232.28 1206.25 235.54 1203.5 237.83C1200.75 240.12 1194.79 244.47 1190.25 247.49C1184.64 251.23 1179.04 253.931 1172.75 255.941C1167.66 257.561 1159.67 259.371 1155 259.941C1150.33 260.521 1143.01 260.99 1138.75 260.99C1134.49 260.99 1127.51 260.511 1123.25 259.931C1118.99 259.341 1111.9 257.74 1107.5 256.36C1102.98 254.95 1094.98 251.17 1089.12 247.67C1080.87 242.76 1076.89 239.54 1069.78 231.99C1062.94 224.73 1059.94 220.61 1057.03 214.49C1054.94 210.09 1052.16 203.34 1050.86 199.49C1048.75 193.22 1048.5 190.72 1048.5 175.49C1048.5 160.4 1048.77 157.65 1050.86 150.99C1052.16 146.86 1054.58 140.79 1056.23 137.49C1057.88 134.19 1061.15 128.79 1063.49 125.49C1065.82 122.19 1070.83 116.561 1074.62 112.971C1078.4 109.391 1085.33 104.141 1090 101.301C1094.67 98.4609 1101.65 94.9902 1105.5 93.5802C1109.35 92.1802 1116.55 90.3907 1121.5 89.6007C1126.45 88.8207 1134.21 88.1409 1138.75 88.0909Z M608.44 100.21C611.16 105.86 614.35 112.74 615.54 115.49C616.72 118.24 619.39 124.09 621.46 128.49C623.54 132.89 629.23 145.15 634.12 155.74C638.999 166.329 642.999 175.218 643 175.49C643 175.76 651.33 193.99 661.5 215.99C671.669 237.989 679.999 256.669 680 257.49C680 258.77 677.09 258.991 659.75 258.971C648.612 258.971 638.992 258.631 638.37 258.221C637.75 257.821 635.42 253.22 633.19 247.99C630.96 242.76 627.54 235 622 222.99L543.57 223.49L537.53 238.53C534.22 246.8 530.71 254.78 528 258.99L487.5 259.04L488.25 256.011C488.66 254.351 490.32 250.18 491.92 246.74C493.53 243.3 496.74 236.22 499.06 230.99C501.38 225.76 505.01 217.78 507.14 213.24C509.26 208.7 511 204.76 511 204.49C511 204.22 512.54 200.73 514.41 196.74C516.29 192.75 522.82 178.8 528.91 165.74C535.01 152.68 540 141.76 540 141.49C540.001 141.218 543.431 133.449 547.62 124.24C551.81 115.03 556.56 104.34 558.18 100.49C559.79 96.6403 561.83 92.7003 562.7 91.7403C564.11 90.1905 566.531 89.9908 603.5 89.9308L608.44 100.21Z M925.92 90.9806C967.61 90.9706 971.02 91.1006 978.5 93.0206C982.9 94.1406 989.2 96.2703 992.5 97.7403C995.8 99.2103 1001.16 102.23 1004.42 104.45C1007.68 106.67 1011.95 110.331 1013.92 112.591C1015.89 114.841 1018.72 119.121 1020.22 122.091C1021.71 125.061 1023.66 130.19 1024.55 133.49C1025.43 136.79 1026.39 143.31 1026.69 147.99C1027.12 154.91 1026.76 158.35 1024.76 166.49C1023.14 173.11 1021.13 178.35 1018.83 181.99C1016.91 185.01 1012.91 189.68 1009.92 192.36C1006.94 195.03 1002.36 198.3 999.75 199.61C997.14 200.92 995.02 202.55 995.04 203.24C995.06 203.93 997.87 208.571 1001.29 213.561C1004.71 218.541 1010.98 227.771 1015.23 234.061C1019.48 240.341 1024.73 248.19 1026.9 251.49C1029.06 254.79 1030.65 257.83 1030.42 258.24C1030.19 258.65 1021 258.99 1010 258.99C998.67 258.99 989.13 258.56 988 257.99C986.9 257.44 981.07 249.45 975.05 240.24C969.02 231.03 961.93 220.66 954.5 210.9L921 210.99L920.5 258.49H880L879.83 175.41C879.74 129.71 880.04 92.0203 880.5 91.6603C880.963 91.2903 901.402 90.9806 925.92 90.9806Z M491.75 90.2306C492.44 90.1006 493.24 91.0004 493.54 92.2403C493.83 93.4803 493.95 100.79 493.5 122.49L405 122.99V163.99H482L481.5 195.49L405 195.99L404.98 226.24C404.98 242.878 404.64 257.047 404.23 257.74C403.68 258.68 398.73 258.92 364.5 258.49V91.4903L427.5 90.9806C462.15 90.7006 491.059 90.3606 491.75 90.2306Z M747.5 90.9903C791.42 90.9903 800.07 91.2302 806.25 92.6202C810.24 93.5102 816.42 95.7108 820 97.5108C823.65 99.3408 829.41 103.56 833.14 107.13C838.18 111.96 840.35 114.93 842.14 119.49C844.11 124.5 844.49 127.22 844.44 135.99C844.39 145.29 844.06 147.181 841.61 152.49C839.78 156.44 836.64 160.63 826 170.99L828.75 172.65C830.26 173.56 833.08 175.34 835 176.61C836.92 177.87 840.15 180.61 842.16 182.7C844.17 184.78 847.22 189.19 848.92 192.49C851.53 197.52 852.13 200.02 852.63 207.99C852.99 213.6 852.77 219.95 852.1 223.49C851.47 226.79 850.02 231.29 848.87 233.49C847.71 235.69 845.54 239.06 844.04 240.99C842.36 243.15 837.9 246.28 832.41 249.16C825.89 252.59 820.82 254.391 813.5 255.891C804.23 257.801 799.72 257.961 751.5 258.101C722.9 258.181 698.71 258.18 697.75 258.12C696.1 258 696 253.3 696 174.49V90.9903H747.5Z M736 226.99C785.91 226.97 793.78 226.62 798 225.5C801.02 224.69 804.63 223.18 806 222.15C807.38 221.121 809.28 218.981 810.23 217.391C811.26 215.671 812.05 212.04 812.18 208.49C812.36 203.62 811.94 201.75 809.95 198.561C808.6 196.401 806.15 193.6 804.5 192.33C802.79 191.02 798.92 189.601 795.5 189.021C792.2 188.461 777.46 188 762.75 188L736 187.99V226.99Z M1138 122.101C1134.42 122.121 1128.8 122.92 1125.5 123.88C1122.2 124.84 1117.92 126.441 1116 127.431C1114.08 128.431 1110.28 130.88 1107.57 132.87C1104.86 134.86 1100.94 138.74 1098.86 141.49C1096.78 144.24 1093.72 150.31 1092.06 154.99C1089.46 162.31 1089.04 164.91 1089.02 173.74C1089 181.86 1089.51 185.6 1091.44 191.74C1092.78 196 1095.82 202.38 1098.19 205.92C1100.56 209.45 1104.3 213.81 1106.5 215.59C1108.7 217.38 1113.42 220.231 1117 221.931C1120.58 223.631 1126.42 225.451 1130 225.981C1133.58 226.521 1139.42 226.701 1143 226.391C1146.58 226.081 1152.31 224.96 1155.75 223.91C1159.19 222.85 1164.33 220.53 1167.17 218.74C1170.02 216.95 1174.76 212.56 1177.7 208.99C1181.13 204.83 1184.19 199.62 1186.23 194.49C1189.18 187.041 1189.4 185.63 1189.45 173.99C1189.49 164.22 1189.09 160.29 1187.6 155.99C1186.56 152.97 1184.26 148.24 1182.5 145.49C1180.74 142.74 1176.75 138.13 1173.65 135.24C1170.54 132.35 1165.41 128.801 1162.25 127.351C1159.09 125.901 1153.8 124.111 1150.5 123.391C1147.2 122.661 1141.58 122.081 1138 122.101Z M583.55 131.99C582.76 131.991 581.81 133.001 581.44 134.24C581.07 135.48 575.65 148.53 569.38 163.24C563.12 177.95 558 190.44 558 190.99C558 191.63 567.17 191.99 583.5 191.99C607.27 191.99 608.97 191.87 608.59 190.24C608.37 189.28 603.6 177.69 598.01 164.49C592.41 151.29 587.2 138.58 586.42 136.24C585.62 133.85 584.37 131.99 583.55 131.99Z M942.17 123.8C930.431 123.63 920.571 123.68 920.25 123.91C919.93 124.14 919.74 131.11 919.83 139.41C919.92 147.7 920.28 159.89 920.64 166.49L921.28 178.49L967.5 177.49C979.38 170.36 980.31 169.32 983.09 163.24C985.38 158.25 986.21 154.92 986.28 150.49C986.35 146.12 985.72 143.02 983.94 139.07C982.53 135.94 979.81 132.221 977.5 130.271C975.3 128.411 971.25 126.26 968.5 125.49C965.15 124.56 956.48 124 942.17 123.8Z M757.92 121.011C746.6 121.001 736.961 121.29 736.5 121.66C736.04 122.02 735.74 130.35 735.83 140.16L736 157.99C776.64 157.92 787.19 157.47 790.23 156.7C792.82 156.03 796.62 154.14 798.66 152.49C800.71 150.84 803.02 147.91 803.8 145.99C804.74 143.69 805.02 140.86 804.61 137.74C804.28 135.13 803.21 131.62 802.25 129.95C801.29 128.28 798.7 126.041 796.5 124.981C794.3 123.921 789.35 122.6 785.5 122.04C781.65 121.48 769.24 121.021 757.92 121.011Z"/>
|
|
</svg>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<div class="tagline">Dark software factory for expert engineers</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|