-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #77 from adastackio/os_builders
Improve styles, add OS links across the site, general fixes and reorg
- Loading branch information
Showing
102 changed files
with
1,473 additions
and
36,055 deletions.
There are no files selected for viewing
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import React from "react"; | ||
import RepoShieldIo from "./badges/shield_io_badges/RepoShieldIo"; | ||
import LanguageShieldIo from "./badges/shield_io_badges/LanguageShieldIo"; | ||
import LatestCommitBadgeIo from "./badges/shield_io_badges/LatestCommitBadgeIo"; | ||
|
||
interface LibraryInfoBarProps { | ||
repoURL: string; | ||
language: string; | ||
} | ||
|
||
const LibraryInfoBar = ({ repoURL, language }: LibraryInfoBarProps) => { | ||
return ( | ||
<div className="code-library-info-bar flex gap-2 items-center"> | ||
<LanguageShieldIo language={language} isColorChanging={false} /> | ||
<LatestCommitBadgeIo repoURL={repoURL} /> | ||
<RepoShieldIo repoURL={repoURL} /> | ||
</div> | ||
); | ||
}; | ||
|
||
export default LibraryInfoBar; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { OSIcon } from "../../assets/icons"; | ||
|
||
const OS = ({ url, className }) => { | ||
if (!url) return null; | ||
|
||
const spanClass = className | ||
? `open-source-icon-inline inline-block h-3 w-3 ${className}` | ||
: "open-source-icon-inline inline-block h-3 w-3"; | ||
|
||
return ( | ||
<span className={spanClass}> | ||
<a href={url} target="_blank" rel="noopener"> | ||
<OSIcon /> | ||
</a> | ||
</span> | ||
); | ||
}; | ||
|
||
export default OS; |
108 changes: 0 additions & 108 deletions
108
components/badges/shield_io_badges/CodeLanguageShieldIoBadge.tsx
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
607269c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
adastackio – ./
adastackio-git-main-adastack-projects.vercel.app
adastackio1436576985.vercel.app
adastackio-adastack-projects.vercel.app
www.adastack.io
adastack.io
demo.adastack.io