Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
10 changes: 9 additions & 1 deletion app/components/Layout/Footer/index.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import "./Footer.css";
import { FaLinkedinIn, FaGithub } from "react-icons/fa";
import { FaLinkedinIn, FaGithub, FaYoutube } from "react-icons/fa";
import { BsTwitterX } from "react-icons/bs";

const Footer = () => {
Expand Down Expand Up @@ -35,6 +35,14 @@ const Footer = () => {
>
<FaLinkedinIn />
</a>
<a
href="https://www.youtube.com/@AOSSIE-Org"
target="_blank"
rel="noopener noreferrer"
aria-label="YouTube"
>
<FaYoutube />
</a>
</div>
</div>
</footer>
Expand Down