diff --git a/src/components/Card.astro b/src/components/Card.astro new file mode 100644 index 0000000..6463cc6 --- /dev/null +++ b/src/components/Card.astro @@ -0,0 +1,24 @@ +--- +export interface Props { + title: string; + bigTech: string; + alternatives: Array<{ name: string; description: string; url: string }>; + bgClass: string; +} + +const { title, bigTech, alternatives, bgClass } = Astro.props; +--- + +
+

{title}

+

Big Tech Option: {bigTech}

+ +
diff --git a/src/pages/WhatWereWorkingOnPages/Alternatives.astro b/src/pages/WhatWereWorkingOnPages/Alternatives.astro index ed71973..36f55fe 100644 --- a/src/pages/WhatWereWorkingOnPages/Alternatives.astro +++ b/src/pages/WhatWereWorkingOnPages/Alternatives.astro @@ -3,6 +3,10 @@ import Navbar from "../../components/Navbar"; import Footer from "../../components/Footer"; import Layout from "../../layouts/Layout.astro"; import "../../styles/globals.css"; + + +import Card from "../../components/Card.astro"; + --- @@ -14,131 +18,81 @@ import "../../styles/globals.css";

Explore open-source and privacy-focused alternatives to popular big tech software.

-
-

Browsers

-

Big Tech Option: Chrome (Google)

-
    -
  • -

    Firefox

    -

    Privacy-focused browser.

    - Website -
  • -
  • -

    Brave

    -

    Ad-blocking browser.

    - Website -
  • -
-
+ -
-

Search Engines

-

Big Tech Option: Google Search

-
    -
  • -

    DuckDuckGo

    -

    Privacy-protecting search.

    - Website -
  • -
  • -

    Searx

    -

    Metasearch engine.

    - Website -
  • -
-
+ -
-

Email

-

Big Tech Option: Gmail (Google)

-
    -
  • -

    ProtonMail

    -

    Encrypted email.

    - Website -
  • -
  • -

    Tutanota

    -

    Secure email service.

    - Website -
  • -
-
+ -
-

Social Media

-

Big Tech Options: Twitter (X), Facebook (Meta)

-
    -
  • -

    Mastodon

    -

    Decentralized social network (alternative to Twitter).

    - Website -
  • -
  • -

    Diaspora

    -

    Decentralized social network (alternative to Facebook).

    - Website -
  • -
-
+ -
-

Video Platforms

-

Big Tech Option: YouTube (Google)

-
    -
  • -

    PeerTube

    -

    Decentralized video hosting.

    - Website -
  • -
  • -

    Odysee

    -

    Blockchain-based video platform.

    - Website -
  • -
-
+ -
-

Cloud Storage

-

Big Tech Option: Google Drive

-
    -
  • -

    Nextcloud

    -

    Self-hosted file sync and share.

    - Website -
  • -
-
+ -
-

Messaging

-

Big Tech Options: WhatsApp (Meta), Slack

-
    -
  • -

    Signal

    -

    Encrypted messaging (alternative to WhatsApp).

    - Website -
  • -
  • -

    Element

    -

    Matrix-based chat (alternative to Slack).

    - Website -
  • -
-
+ + + -
-

Maps

-

Big Tech Option: Google Maps

-
    -
  • -

    OpenStreetMap

    -

    Community-driven maps.

    - Website -
  • -
-