Skip to content

Commit c67d8a2

Browse files
Showcase: Fixing references to NASA/JPL (#2272)
The homepage and showcase pages incorrectly link to and refer to the NASA website, which does not use TailwindCSS. The correct link and website should be https://www.jpl.nasa.gov. I have also included suggested updates to the copy to match this change. --------- Co-authored-by: Jordan Pittman <jordan@cryptica.me>
1 parent d95e3a3 commit c67d8a2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/app/showcase/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export default async function Showcase() {
3030
<p className="prose mx-2 max-w-(--breakpoint-md) text-lg leading-8 text-gray-600 dark:text-gray-400">
3131
Well not quite <em>anything</em>, like you can't build a spaceship with it. But you can definitely build the
3232
website for the spaceship —{" "}
33-
<a href="https://www.nasa.gov/" target="_blank" rel="noreferrer">
33+
<a href="https://www.jpl.nasa.gov/" target="_blank" rel="noreferrer">
3434
NASA
3535
</a>{" "}
3636
did.
@@ -172,7 +172,7 @@ const showcase = [
172172
},
173173
{
174174
name: "NASA Jet Propulsion Laboratory",
175-
url: "https://jpl.nasa.gov",
175+
url: "https://www.jpl.nasa.gov",
176176
thumbnail: require("./img/jpl.nasa.gov.png").default,
177177
video: "/showcase-videos/jpl.nasa.gov.mp4",
178178
description: "Space laboratory website",

src/components/home/build-anything-section.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,13 +191,13 @@ export default function BuildAnythingSection() {
191191
<Image src={midjourney} alt="Midjourney" width={293} />
192192
</a>
193193
<a
194-
href="https://nasa.gov/"
194+
href="https://www.jpl.nasa.gov/"
195195
rel="noreferrer"
196196
target="_blank"
197197
className="group relative opacity-75 transition-opacity hover:opacity-100"
198198
>
199-
<ExternalLinkLabel>nasa.gov</ExternalLinkLabel>
200-
<Image src={nasa} alt="NASA" width={293} />
199+
<ExternalLinkLabel>jpl.nasa.gov</ExternalLinkLabel>
200+
<Image src={nasa} alt="NASA/JPL" width={293} />
201201
</a>
202202
</div>
203203
</BentoItem>

0 commit comments

Comments
 (0)