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 .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.biome": "explicit"
}
}
78 changes: 39 additions & 39 deletions app/components/About/About.css
Original file line number Diff line number Diff line change
@@ -1,71 +1,71 @@
.about {
padding: 4rem 0;
background-color: white;
padding: 4rem 0;
background-color: white;
}

.about-container {
display: flex;
align-items: center;
justify-content: center;
max-width: 1000px;
margin: 0 auto;
gap: 4rem;
padding: 0 20px;
display: flex;
align-items: center;
justify-content: center;
max-width: 1000px;
margin: 0 auto;
gap: 4rem;
padding: 0 20px;
}

.about-logo {
flex: 1;
display: flex;
justify-content: center;
flex: 1;
display: flex;
justify-content: center;
}

.about-logo img {
max-width: 100%;
height: auto;
max-height: 300px;
max-width: 100%;
height: auto;
max-height: 300px;
}

.about-content {
flex: 1;
flex: 1;
}

.about-content h2 {
font-size: 2.5rem;
line-height: 1.2;
margin-bottom: 1.5rem;
font-weight: 700;
color: #1a1a1a;
font-size: 2.5rem;
line-height: 1.2;
margin-bottom: 1.5rem;
font-weight: 700;
color: #1a1a1a;
}

.about-content p {
font-size: 1rem;
line-height: 1.6;
color: #555;
margin-bottom: 2rem;
font-size: 1rem;
line-height: 1.6;
color: #555;
margin-bottom: 2rem;
}

.social-links {
display: flex;
gap: 1.5rem;
display: flex;
gap: 1.5rem;
}

.social-links a {
color: #888;
font-size: 1.5rem;
transition: color 0.2s;
color: #888;
font-size: 1.5rem;
transition: color 0.2s;
}

.social-links a:hover {
color: #1a1a1a;
color: #1a1a1a;
}

@media (max-width: 768px) {
.about-container {
flex-direction: column;
text-align: center;
}
.social-links {
justify-content: center;
}
.about-container {
flex-direction: column;
text-align: center;
}

.social-links {
justify-content: center;
}
}
85 changes: 43 additions & 42 deletions app/components/About/About.jsx
Original file line number Diff line number Diff line change
@@ -1,50 +1,51 @@
import React from "react";
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 Image from "next/image";
import { BsTwitterX } from "react-icons/bs";
import { FaDiscord, FaEnvelope, FaGithub } from "react-icons/fa";
import { SiGitlab } from "react-icons/si";
import AossieLogo from "../../assets/aossie_logo.png";

const About = () => {
return (
<section className="about">
<div className="about-container">
<div className="about-logo">
<img src={AossieLogo.src} alt="AOSSIE Logo" draggable={false} />
</div>
<div className="about-content">
<h2>
We Innovate
<br />
We Educate
</h2>
<p>
We are an Australian not-for-profit umbrella organization for
open-source projects. We believe the open-source philosophy provides
a resource-efficient channel to transfer knowledge and achieve
innovation and education.
</p>
<div className="social-links">
<a href="mailto:contact@aossie.org">
<FaEnvelope />
</a>
<a href="https://gitlab.com/aossie">
<SiGitlab />
</a>
<a href="https://github.com/AOSSIE-Org">
<FaGithub />
</a>
<a href="https://discord.com/invite/MMZBadkYFm">
<FaDiscord />
</a>
<a href="https://x.com/aossie_org">
<BsTwitterX />
</a>
</div>
</div>
</div>
</section>
);
return (
<section className="about">
<div className="about-container">
<div className="about-logo">
<Image src={AossieLogo} alt="AOSSIE Logo" />
</div>
<div className="about-content">
<h2>
We Innovate
<br />
We Educate
</h2>
<p>
We are an Australian not-for-profit umbrella organization for
open-source projects. We believe the open-source philosophy provides
a resource-efficient channel to transfer knowledge and achieve
innovation and education.
</p>
<div className="social-links">
<a href="mailto:contact@aossie.org">
<FaEnvelope />
</a>
<a href="https://gitlab.com/aossie">
<SiGitlab />
</a>
<a href="https://github.com/AOSSIE-Org">
<FaGithub />
</a>
<a href="https://discord.com/invite/MMZBadkYFm">
<FaDiscord />
</a>
<a href="https://x.com/aossie_org">
<BsTwitterX />
</a>
</div>
</div>
</div>
</section>
);
};

export default React.memo(About);
Loading