Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add cncf profile #449

Merged
merged 1 commit into from
Jun 14, 2024
Merged
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
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ To contribute new features and changes to the website, you would want to run the
```bash
# install the dependencies
$ npm install
# "install" your profile (default)
./scripts/init.sh default
# "install" your profile (cncf)
./scripts/init.sh cncf
# start the development server
$ npm run dev
```
Expand Down
2 changes: 0 additions & 2 deletions app/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@ const config = {
avatar: "/static/images/luca_cavallin.png",
job: "Software Engineer",
company: "GitHub, Inc.",
email: "[email protected]",
github: "https://github.com/lucavallin",
linkedin: "https://www.linkedin.com/in/lucavallin",
reddit: "https://reddit.com/u/lucavallin",
website: "https://www.lucavall.in"
},
meta: {
Expand Down
17 changes: 0 additions & 17 deletions components/AboutSection.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { faHeart } from "@fortawesome/free-regular-svg-icons";
import { faPaintRoller } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import Link from "next/link";
import config from "../app/config.mts";
Expand Down Expand Up @@ -37,22 +36,6 @@ export const AboutSection = () => {
& contributors initiative
</span>
</Link>
<Link
className="flex flex-row items-center text-base"
title="Chiara Dametto on LinkedIn"
aria-label=" UI/UX Design by Chiara Dametto"
rel="noopener noreferrer"
target="_blank"
href="https://www.linkedin.com/in/chiara-dametto"
>
<FontAwesomeIcon icon={faPaintRoller} />
<span className="ml-2">
UI/UX Design by{" "}
<span className="inline font-bold text-primary transition-all hover:underline">
Chiara Dametto
</span>{" "}
</span>
</Link>
</div>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion components/Repository/RepositoryItemTopBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const RepositoryItemTopBar = ({
repositoryUrl={repositoryUrl}
/>
<div className="flex flex-1 items-center justify-end">
<div className={`h-2 w-2 rounded-full ${repositoryHasNewIssues ? "bg-primary" : ""}`}></div>
<div className={`size-2 rounded-full ${repositoryHasNewIssues ? "bg-primary" : ""}`}></div>
</div>
<RepositoryIssueNumberIndicator numberOfIssues={repositoryNumIssues} />
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/Repository/RepositoryLinkTitle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const RepositoryLinkTitle = ({
return (
<Link
className={`text-xl font-bold transition-all group-hover:text-primary ${
isIssueOpen ? "text-primary max-md:w-[50%] md:truncate" : ""
isIssueOpen ? "text-primary max-md:w-1/2 md:truncate" : ""
}`}
href={repositoryUrl}
rel="noopener noreferrer"
Expand Down
2 changes: 1 addition & 1 deletion components/ScrollToTop.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const ScrollToTop = ({ handleOnClick }: ScrollToTopProps) => {
<div className="z-50">
<button
onClick={handleOnClick}
className="fixed bottom-4 right-4 flex h-[64px] w-[64px] items-center justify-center rounded-full border border-primary bg-transparent hover:bg-primary hover:text-black md:bottom-7 md:right-4"
className="fixed bottom-4 right-4 flex size-[64px] items-center justify-center rounded-full border border-primary bg-transparent hover:bg-primary hover:text-black md:bottom-7 md:right-4"
>
<FontAwesomeIcon icon={faArrowUp} size="xl" />
</button>
Expand Down
21 changes: 21 additions & 0 deletions profiles/cncf/app/config.mts
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
const config = {
author: {
name: "Luca Cavallin",
avatar: "/static/images/luca_cavallin.png",
job: "Software Engineer",
company: "GitHub, Inc.",
github: "https://github.com/lucavallin",
linkedin: "https://www.linkedin.com/in/lucavallin",
website: "https://www.lucavall.in",
},
meta: {
title:
"cncf.verto.sh - Your Gateway to Open Source Cloud Native Collaboration",
description: `verto.sh simplifies your entry into the Cloud Native open-source world by curating CNCF projects. Ideal for beginners making their first contribution, founders building teams, and maintainers seeking new contributors. Explore, contribute, and foster innovation with cncf.verto.sh.`,
siteUrl: "https://cncf.verto.sh",
socialBanner: "/meta.png",
locale: "en-US",
},
};

export default config;
Loading
Loading