Skip to content

Commit

Permalink
Merge pull request #180 from Schroedinger-Hat/chore/update-org-name
Browse files Browse the repository at this point in the history
chore: update org name
  • Loading branch information
Readpato authored Oct 15, 2024
2 parents 6b842aa + 52f41f5 commit 959b313
Show file tree
Hide file tree
Showing 4 changed files with 107 additions and 51 deletions.
2 changes: 1 addition & 1 deletion .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -100,5 +100,5 @@
"repoType": "github",
"repoHost": "https://github.com",
"projectName": "ImageGoNord",
"projectOwner": "Schrodinger-Hat"
"projectOwner": "Schroedinger-Hat"
}
4 changes: 2 additions & 2 deletions .github/workflows/auto-publish-tweet.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Tweeting on schrodinger_hat profile'
name: "Tweeting on schrodinger_hat profile"

on:
workflow_dispatch:
Expand All @@ -19,5 +19,5 @@ jobs:
TWITTER_API_KEY_SECRET: ${{ secrets.TWITTER_API_KEY_SECRET }}
TWITTER_BEARER_TOKEN: ${{ secrets.TWITTER_BEARER_TOKEN }}
TWITTER_ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }}
TWITTER_ACCESS_TOKEN_SECRET : ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}
TWITTER_ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}
SUBREDDIT: ${{ secrets.SUBREDDIT }}
88 changes: 58 additions & 30 deletions src/ign-frontend/public/index.html
Original file line number Diff line number Diff line change
@@ -1,49 +1,77 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<link href="https://fonts.googleapis.com/css2?family=Red+Hat+Display" rel="stylesheet">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css" />
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link rel="icon" href="<%= BASE_URL %>favicon.ico" />
<link
href="https://fonts.googleapis.com/css2?family=Red+Hat+Display"
rel="stylesheet"
/>
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ffffff" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
/>
<title>ImageGoNord - RGB image to Nordtheme</title>
<meta name="description" content="An opensource tool and an API that can convert your rgb images to nordtheme palette" />
<meta name="google-site-verification" content="jd3LhMsPvPGtcqxRBCjsQFnbqrR9KNFhhTJpzaD97mw" />

<meta property="og:title" content="ImageGoNord - RGB image to Nordtheme">
<meta property="og:type" content="article">
<meta property="og:url" content="https://ign.schroedinger-hat.org/">
<meta property="og:site_name" content="ign.schroedinger-hat.org">
<meta property="og:description" content="An opensource tool and an API that can convert your rgb images to nordtheme palette">
<meta
name="description"
content="An opensource tool and an API that can convert your rgb images to nordtheme palette"
/>
<meta
name="google-site-verification"
content="jd3LhMsPvPGtcqxRBCjsQFnbqrR9KNFhhTJpzaD97mw"
/>

<meta property="og:title" content="ImageGoNord - RGB image to Nordtheme" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://ign.schroedinger-hat.org/" />
<meta property="og:site_name" content="ign.schroedinger-hat.org" />
<meta
property="og:description"
content="An opensource tool and an API that can convert your rgb images to nordtheme palette"
/>

<meta name="twitter:widgets:csp" content="on">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="https://twitter.com/schrodinger-hat">
<meta name="twitter:domain" content="ign.schrodinger-hat">
<meta name="twitter:title" content="ImageGoNord - RGB image to Nordtheme">
<meta name="twitter:description" content="An opensource tool and an API that can convert your rgb images to nordtheme palette">

<meta name="twitter:widgets:csp" content="on" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="https://twitter.com/schrodinger-hat" />
<meta name="twitter:domain" content="ign.schroedinger-hat" />
<meta name="twitter:title" content="ImageGoNord - RGB image to Nordtheme" />
<meta
name="twitter:description"
content="An opensource tool and an API that can convert your rgb images to nordtheme palette"
/>
</head>
<body>
<noscript>
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
<strong
>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work
properly without JavaScript enabled. Please enable it to
continue.</strong
>
</noscript>
<div id="app"></div>

<script async defer src="https://buttons.github.io/buttons.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-175469686-1"></script>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-175469686-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());

gtag('config', 'UA-175469686-1');
gtag("config", "UA-175469686-1");
</script>

<!-- built files will be auto injected -->
Expand Down
64 changes: 46 additions & 18 deletions src/ign-frontend/src/components/Contributing.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,39 @@
<div class="container contributing-container-text">
<div class="inner-text">
<h4>Contributing</h4>
<p><b>ImageGoNord</b> is open source and <a class="external-link-color"
href="https://github.com/Schroedinger-Hat/ImageGoNord-web" target="_blank">hosted on GitHub</a>.</p>
<a class="github-button" href="https://github.com/Schroedinger-Hat/ImageGoNord-web"
data-color-scheme="no-preference: light; light: light; dark: dark;" data-size="large"
data-show-count="true"
aria-label="Star
Schroedinger-Hat/ImageGoNord-web on GitHub">Star</a>
<p>If you find a bug or have an idea for a new feature, please <a
class="external-link-color" target="_blank"
href="https://github.com/Schroedinger-Hat/ImageGoNord-web/issues">open an issue on GitHub</a>.</p>
<p>
<b>ImageGoNord</b> is open source and
<a
class="external-link-color"
href="https://github.com/Schroedinger-Hat/ImageGoNord-web"
target="_blank"
>hosted on GitHub</a
>.
</p>
<a
class="github-button"
href="https://github.com/Schroedinger-Hat/ImageGoNord-web"
data-color-scheme="no-preference: light; light: light; dark: dark;"
data-size="large"
data-show-count="true"
aria-label="Star
Schroedinger-Hat/ImageGoNord-web on GitHub"
>Star</a
>
<p>
If you find a bug or have an idea for a new feature, please
<a
class="external-link-color"
target="_blank"
href="https://github.com/Schroedinger-Hat/ImageGoNord-web/issues"
>open an issue on GitHub</a
>.
</p>
<p class="social">
<a target="_blank" href="https://opencollective.com/schrodinger-hat">
<a
target="_blank"
href="https://opencollective.com/schrodinger-hat"
>
<i class="fas fa-donate external-link-color"></i>
</a>
<a href="https://www.facebook.com/schrodingerhat" target="_blank">
Expand All @@ -26,13 +47,22 @@
<a href="https://twitter.com/schrodinger_hat" target="_blank">
<i class="fab fa-twitter external-link-color"></i>
</a>
<a href="https://www.linkedin.com/company/schrodinger-hat/" target="_blank">
<a
href="https://www.linkedin.com/company/schroedinger-hat/"
target="_blank"
>
<i class="fab fa-linkedin external-link-color"></i>
</a>
<a href="https://www.instagram.com/schrodinger_hat/" target="_blank">
<a
href="https://www.instagram.com/schrodinger_hat/"
target="_blank"
>
<i class="fab fa-instagram external-link-color"></i>
</a>
<a href="https://www.youtube.com/channel/UC1QLLgrGrPmlaFhS0orykCA" target="_blank">
<a
href="https://www.youtube.com/channel/UC1QLLgrGrPmlaFhS0orykCA"
target="_blank"
>
<i class="fab fa-youtube external-link-color"></i>
</a>
<a href="https://discord.gg/RTXr8A3eFn" target="_blank">
Expand Down Expand Up @@ -61,7 +91,6 @@ export default {

<!-- da rifare -->
<style scoped lang="scss">
.contributing-container {
position: relative;
Expand All @@ -81,7 +110,7 @@ export default {
.social {
a {
padding: 0 .5em;
padding: 0 0.5em;
font-size: 1.2em;
}
}
Expand All @@ -93,7 +122,7 @@ export default {
margin: 0px auto;
.inner-text {
padding: 0 .5em;
padding: 0 0.5em;
h4 {
font-size: 2.2em;
margin: 0 0;
Expand Down Expand Up @@ -127,5 +156,4 @@ export default {
}
}
}
</style>

0 comments on commit 959b313

Please sign in to comment.