Fix space logo asset paths
Browse files
public/brand/executorch-chip-logo-20260427.svg
ADDED
|
|
public/brand/gpu-mode-white-cropped-20260427.svg
ADDED
|
|
public/brand/hugging-face-logo-pirate-20260427.svg
ADDED
|
|
public/brand/openai-white-wordmark-20260427.svg
ADDED
|
|
src/app/signup-panel.tsx
CHANGED
|
@@ -19,11 +19,6 @@ interface StatusState {
|
|
| 19 |
|
| 20 |
const HACKATHON_SIGNUP_URL =
|
| 21 |
"https://huggingface.co/organizations/humanitys-last-hackathon/share/ItCCmUCGldPpHioCeqQcymUPTDXuwEepwV";
|
| 22 |
-
const BRAND_ASSET_VERSION = "20260427-1";
|
| 23 |
-
|
| 24 |
-
function brandAsset(path: string) {
|
| 25 |
-
return `${path}?v=${BRAND_ASSET_VERSION}`;
|
| 26 |
-
}
|
| 27 |
|
| 28 |
function getQueryStatus(params: URLSearchParams, session: SignupSession | null): StatusState | null {
|
| 29 |
const error = params.get("error");
|
|
@@ -137,7 +132,7 @@ export default function SignupPanel({ session }: SignupPanelProps) {
|
|
| 137 |
alt="OpenAI white wordmark"
|
| 138 |
className={styles.openaiWordmark}
|
| 139 |
height={719}
|
| 140 |
-
src=
|
| 141 |
width={1604}
|
| 142 |
/>
|
| 143 |
</div>
|
|
@@ -150,7 +145,7 @@ export default function SignupPanel({ session }: SignupPanelProps) {
|
|
| 150 |
className={styles.hfPirateLogo}
|
| 151 |
height={463}
|
| 152 |
loading="lazy"
|
| 153 |
-
src=
|
| 154 |
width={500}
|
| 155 |
/>
|
| 156 |
</div>
|
|
@@ -163,7 +158,7 @@ export default function SignupPanel({ session }: SignupPanelProps) {
|
|
| 163 |
className={styles.gpuModeLogo}
|
| 164 |
height={1700}
|
| 165 |
loading="lazy"
|
| 166 |
-
src=
|
| 167 |
width={3141}
|
| 168 |
/>
|
| 169 |
</div>
|
|
@@ -176,7 +171,7 @@ export default function SignupPanel({ session }: SignupPanelProps) {
|
|
| 176 |
className={styles.executorchLogo}
|
| 177 |
height={170}
|
| 178 |
loading="lazy"
|
| 179 |
-
src=
|
| 180 |
width={170}
|
| 181 |
/>
|
| 182 |
</div>
|
|
|
|
| 19 |
|
| 20 |
const HACKATHON_SIGNUP_URL =
|
| 21 |
"https://huggingface.co/organizations/humanitys-last-hackathon/share/ItCCmUCGldPpHioCeqQcymUPTDXuwEepwV";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
|
| 23 |
function getQueryStatus(params: URLSearchParams, session: SignupSession | null): StatusState | null {
|
| 24 |
const error = params.get("error");
|
|
|
|
| 132 |
alt="OpenAI white wordmark"
|
| 133 |
className={styles.openaiWordmark}
|
| 134 |
height={719}
|
| 135 |
+
src="/brand/openai-white-wordmark-20260427.svg"
|
| 136 |
width={1604}
|
| 137 |
/>
|
| 138 |
</div>
|
|
|
|
| 145 |
className={styles.hfPirateLogo}
|
| 146 |
height={463}
|
| 147 |
loading="lazy"
|
| 148 |
+
src="/brand/hugging-face-logo-pirate-20260427.svg"
|
| 149 |
width={500}
|
| 150 |
/>
|
| 151 |
</div>
|
|
|
|
| 158 |
className={styles.gpuModeLogo}
|
| 159 |
height={1700}
|
| 160 |
loading="lazy"
|
| 161 |
+
src="/brand/gpu-mode-white-cropped-20260427.svg"
|
| 162 |
width={3141}
|
| 163 |
/>
|
| 164 |
</div>
|
|
|
|
| 171 |
className={styles.executorchLogo}
|
| 172 |
height={170}
|
| 173 |
loading="lazy"
|
| 174 |
+
src="/brand/executorch-chip-logo-20260427.svg"
|
| 175 |
width={170}
|
| 176 |
/>
|
| 177 |
</div>
|