Skip to content
Closed
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
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,14 @@ We welcome contributions! Please see the [AOSSIE contribution guidelines](https:
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
4. Push the branch to your fork (git push origin feature/AmazingFeature)
5. Open a Pull Request against `Resonate-Website:dev`
5. Open a Pull Request against `Resonate-Website:dev`

## 🔗 Connect With Us

- GitHub: https://github.com/AOSSIE-Org
- X (Twitter): https://x.com/aossie_org
- LinkedIn: https://www.linkedin.com/company/aossie
- YouTube: https://youtube.com/@AOSSIE

## 📄 License

Expand Down
5 changes: 4 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,6 +39,9 @@ const About = () => {
<a href="https://x.com/aossie_org">
<BsTwitterX />
</a>
<a href="https://youtube.com/@AOSSIE" target="_blank" rel="noopener noreferrer" aria-label="YouTube">
<FaYoutube />
</a>
</div>
</div>
</div>
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://youtube.com/@AOSSIE"
rel="noopener noreferrer"
target="_blank"
aria-label="YouTube"
>
<FaYoutube />
</a>
</div>
</div>
</footer>
Expand Down
13 changes: 12 additions & 1 deletion app/components/Layout/NavBar/index.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use client";
import React, { useState } from "react";
import "./Navbar.css";
import { FaGithub, FaExternalLinkAlt } from "react-icons/fa";
import { FaGithub, FaExternalLinkAlt , FaYoutube} from "react-icons/fa";
import Logo from "@/assets/resonate_logo_white.svg";

const Navbar = () => {
Expand Down Expand Up @@ -60,6 +60,17 @@ const Navbar = () => {
>
<FaGithub size={20} />
</a>
<a
href="https://youtube.com/@AOSSIE"
target="_blank"
rel="noopener noreferrer"
className="nav-link"
onClick={handleLinkClick}
aria-label="YouTube"
>
<FaYoutube size={20} />
</a>


<a
href="https://play.google.com/store/apps/details?id=com.resonate.resonate"
Expand Down
6 changes: 5 additions & 1 deletion app/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,12 @@ export const metadata = {
apple: "/logo192.png",
},
manifest: "/manifest.json",
};

export const viewport = {
themeColor: "#000000",
viewport: "width=device-width, initial-scale=1",
width: "device-width",
initialScale: 1,
};

export default function RootLayout({ children }) {
Expand Down