Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Resonate Website

[![YouTube](https://img.shields.io/badge/YouTube-Subscribe-red?logo=youtube)](https://www.youtube.com/@AOSSIE-Org)

The official landing page for **Resonate** - an Open Source social voice platform maintained by [AOSSIE](https://aossie.org).

## About Resonate
Expand Down Expand Up @@ -88,6 +90,11 @@ app/
└── globals.css # Global styles
```

## 🌐 Connect With Us

Stay updated with our latest news and videos:
- ▢️ **YouTube**: [Subscribe to AOSSIE](https://www.youtube.com/@AOSSIE-Org)

## 🀝 Contributing

We welcome contributions! Please see the [AOSSIE contribution guidelines](https://github.com/AOSSIE/.github/blob/main/CONTRIBUTING.md) for more details.
Expand Down
11 changes: 10 additions & 1 deletion app/components/About/About.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import "./About.css";
import AossieLogo from "../../assets/aossie_logo.png";
import { SiGitlab } from "react-icons/si";
import { FaEnvelope, FaGithub, FaDiscord } from "react-icons/fa";
import { FaEnvelope, FaGithub, FaDiscord, FaYoutube } from "react-icons/fa";
import { BsTwitterX } from "react-icons/bs";

const About = () => {
Expand Down Expand Up @@ -39,10 +39,19 @@ const About = () => {
<a href="https://x.com/aossie_org">
<BsTwitterX />
</a>
<a
href="https://www.youtube.com/@AOSSIE-Org"
target="_blank"
rel="noopener noreferrer"
aria-label="YouTube"
>
<FaYoutube />
</a>
</div>
</div>
</div>
</section>

);
};

Expand Down