diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx
index ca044ae..1360274 100644
--- a/src/components/Navbar.tsx
+++ b/src/components/Navbar.tsx
@@ -8,9 +8,9 @@ interface NavbarProps {
const NAV_ITEMS = [
{ href: "/#aboutus", label: "About Us", activeKey: "AboutUs", text: "text-red-400", darkText: "dark:text-red-400" },
{ href: "/#whatwereupto", label: "What We're Up To", activeKey: "WhatWereUpTo", text: "text-orange-400", darkText: "dark:text-orange-400" },
+ { href: "/#services", label: "Services", activeKey: "Services", text: "text-green-400", darkText: "dark:text-green-400" },
{ href: "/#bigtechalternatives", label: "Big Tech Alternatives", activeKey: "BigTechAlternatives", text: "text-purple-400", darkText: "dark:text-purple-400" },
- // TODO once we have these sections done!
- // { href: "", label: "Services", activeKey: "Services", text: "text-green-400", darkText: "dark:text-green-400" },
+ // TODO once we have this section done!
// { href: "", label: "Calendar", activeKey: "Calendar", text: "text-blue-400", darkText: "dark:text-blue-400" },
];
@@ -19,7 +19,7 @@ export default function Navbar(navbarProps: NavbarProps) {
const [isShowingHamburgerFullMenu, setIsShowingHamburgerFullMenu] = useState(false);
return (
-
+
{ setActivePage("Home") }}>
@@ -33,7 +33,7 @@ export default function Navbar(navbarProps: NavbarProps) {
/> */}
Resist Tech Monopolies
@@ -48,7 +48,7 @@ export default function Navbar(navbarProps: NavbarProps) {
setActivePage(activeKey)
}}
className={cn(
- "transition-colors text-xl md:text-2xl font-bold",
+ "transition-colors md:text-2xl font-bold",
text,
darkText,
activePage == activeKey && "underline",
@@ -66,7 +66,7 @@ export default function Navbar(navbarProps: NavbarProps) {
- {isShowingHamburgerFullMenu &&
+ {isShowingHamburgerFullMenu &&
{NAV_ITEMS.map(({ href, label, activeKey, text, darkText }) => (
Services
+
+
+ Our Mission
+ We promote free and open source options with a non-judgmental attitude. We understand
+ that almost everyone ends up using Big Tech software sometimes. We want to help
+ you meet your own goals, whether it be reducing what you pay big corporations or
+ increasing your privacy.
+
+ Managed Service Hosting
+ We offer individuals and organizations access to a suite of open-source, privacy-friendly
+ tools, including: • NextCloud (alternative to Google Workspace, Microsoft 365,
+ etc.) • Loomio (democratic, asynchronous decision-making platform) • Zulip (alternative
+ to Slack, Teams, Discord) • Keycloak (Single Sign-On/SSO) • Vaultwarden (password
+ manager) • Headscale (VPN) • Matrix (decentralized, federated alternative to Discord)
+ • Immich (alternative to Google Photos) Our team has decades of collective expertise
+ in cloud computing and open-source software. We're patient, responsive to users'
+ needs, and skilled at translating from tech jargon to plain language.
+
+ Data Migration
+ We know a lot of people want to move away from the Big Tech ecosystem but feel
+ overwhelmed and don't know where to start. We've been doing this for years, and
+ we know how to help you move your data away from Big Tech and select appropriate,
+ privacy-friendly, open-source alternatives that still meet your needs. We offer
+ individual, organization, and family pricing.
+
+ Training
+ We offer in-person events to help individuals and organizations understand the
+ risks of Big Tech, improve their digital security, and learn about privacy-friendly,
+ open-source alternatives. Here are a few of the events we've held: • DiscoTechs
+ (science-fair style event where you can learn about a variety of alternatives to
+ Big Tech) • Digital Security workshops (hands-on sessions to improve your security
+ posture and understand what threats are actually relevant for you and your organization)s
+ • Office Hours (drop-in IT help)
+
+ Tech Consulting
+ Does your organization need help choosing IT tools? Need a website built or hosted?
+ Maybe you want to self-host your own server infrastructure, but need a little support.
+ Whatever your tech needs, just drop us a line, and we'll see if we can help.
+
+
+ Hire us!
+
+
diff --git a/src/pages/index.astro b/src/pages/index.astro
index 93f7205..3000473 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -5,15 +5,16 @@ import BigTechAlternatives from "@/components/BigTechAlternatives.astro";
import WhatWereUpTo from "@/components/WhatWereUpTo.astro";
import Layout from "@/layouts/Layout.astro";
import "@/styles/globals.css";
+import Services from "@/components/Services.astro";
---
-
+
-