Skip to content

Commit

Permalink
Make reference app links clickable
Browse files Browse the repository at this point in the history
Updated the reference app sections in `src/pages/Index.tsx` to make the organization website links clickable and set to open in a new tab.
[skip gpt_engineer]
  • Loading branch information
lovable-dev[bot] committed Feb 5, 2025
1 parent 5612262 commit 5ea75ec
Showing 1 changed file with 39 additions and 3 deletions.
42 changes: 39 additions & 3 deletions src/pages/Index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,19 +112,55 @@ const Index = () => {
{
title: "Privacy Tube",
shortDescription: "Video publications by Privacy International Media",
longDescription: "Privacy International Media (PI) has been working to promote the human right of privacy throughout the world since 1990; specifically on raising awareness of threats to privacy and reporting on surveillance methods and tactics. Visit the PI website for more info: https://www.privacyinternational.org",
longDescription: (
<>
Privacy International Media (PI) has been working to promote the human right of privacy throughout the world since 1990; specifically on raising awareness of threats to privacy and reporting on surveillance methods and tactics. Visit the PI website for more info:{" "}
<a
href="https://www.privacyinternational.org"
target="_blank"
rel="noopener noreferrer"
className="text-owntube-orange hover:underline"
>
https://www.privacyinternational.org
</a>
</>
),
githubRepo: "https://github.com/OwnTube-tv/cust-app-pitube",
},
{
title: "Blender Tube",
shortDescription: "Videos on the Blender 3D creation software",
longDescription: "Blender Foundation provides videos presenting the evolutions of their popular 3D creation software, along with tutorials and presentations by the community. Read more about the organization here: https://www.blender.org/about/foundation/",
longDescription: (
<>
Blender Foundation provides videos presenting the evolutions of their popular 3D creation software, along with tutorials and presentations by the community. Read more about the organization here:{" "}
<a
href="https://www.blender.org/about/foundation/"
target="_blank"
rel="noopener noreferrer"
className="text-owntube-orange hover:underline"
>
https://www.blender.org/about/foundation/
</a>
</>
),
githubRepo: "https://github.com/OwnTube-tv/cust-app-blender",
},
{
title: "XR Tube",
shortDescription: "Information videos by Extinction Rebellion",
longDescription: "A video library for Extinction Rebellion (XR) with accounts for every national group, hosted on renewable energy-powered infrastructure. Read more about the movement here: https://rebellion.global",
longDescription: (
<>
A video library for Extinction Rebellion (XR) with accounts for every national group, hosted on renewable energy-powered infrastructure. Read more about the movement here:{" "}
<a
href="https://rebellion.global"
target="_blank"
rel="noopener noreferrer"
className="text-owntube-orange hover:underline"
>
https://rebellion.global
</a>
</>
),
githubRepo: "https://github.com/OwnTube-tv/cust-app-xrtube",
},
].map((app) => (
Expand Down

0 comments on commit 5ea75ec

Please sign in to comment.