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

Feature: update branding #31

Merged
merged 6 commits into from
Sep 11, 2023
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: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Everyone participating in this project is expected to abide by the [eLLMental Co
which is based on the Contributor Covenant Code of Conduct.

If you encounter any behavior that violates our code of conduct, please send an email to `[email protected]` or a
direct message to any of the administrators in our official [Discord server](https://discord.gg/34cBbvjjAx). All reports
direct message to any of the administrators in our official [Discord server](https://discord.gg/ZajFQEjgFw). All reports
will be examined and investigated promptly and in a manner that respects the privacy and safety of the affected
individual(s).

Expand Down Expand Up @@ -195,4 +195,4 @@ contribute and reduces the chance of duplicate work.

If you feel lost, don't hesitate to reach out the core team. You can connect with us via email writing
to [[email protected]](mailto:[email protected]), or joining our
official [Discord server](https://discord.gg/34cBbvjjAx). We will be more than happy to hear about you!
official [Discord server](https://discord.gg/ZajFQEjgFw). We will be more than happy to hear about you!
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# eLLMental

![eLLMental](docs-site/static/img/eLLMental-logo-black.png#gh-light-mode-only)
![eLLMental](docs-site/static/img/eLLMental-logo-white.png#gh-dark-mode-only)
![eLLMental](docs-site/static/img/eLLMental-logo-black.svg#gh-light-mode-only)
![eLLMental](docs-site/static/img/eLLMental-logo-white.svg#gh-dark-mode-only)

eLLMental is the ultimate library of components for building LLM-driven projects in the JVM.

Expand Down Expand Up @@ -51,7 +51,7 @@ These are the design principles behind eLLMental:

We'll need your help to build something that becomes really useful for everyone. There are many things you can do to contribute:

1. Join the conversation in our [Discord server](https://discord.gg/34cBbvjjAx).
1. Join the conversation in our [Discord server](https://discord.gg/ZajFQEjgFw).
2. Send us suggestions, questions, or feature requests by creating a [New Issue](https://github.com/theam/ellmental/issues/new).
3. Look at the [Open Issues](https://github.com/theam/ellmental/issues), choose one that interests you, and start contributing.
4. Spread the word about eLLMental!
Expand Down
2 changes: 1 addition & 1 deletion docs-site/docs/01_introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ These are the design principles behind eLLMental:

We'll need your help to build something that becomes really useful for everyone. There are many things you can do to contribute:

1. Join the conversation in our [Discord server](https://discord.gg/34cBbvjjAx).
1. Join the conversation in our [Discord server](https://discord.gg/ZajFQEjgFw).
2. Send us suggestions, questions, or feature requests by creating a [New Issue](https://github.com/theam/ellmental/issues/new).
3. Look at the [Open Issues](https://github.com/theam/ellmental/issues), choose one that interests you, and start contributing.
4. Spread the word about eLLMental!
2 changes: 1 addition & 1 deletion docs-site/docs/04_community/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Community contributions are essential to the development and refinement of eLLMental. You can become a part of the eLLMental community in the following ways:

1. Join the conversation in our [Discord server](https://discord.gg/34cBbvjjAx).
1. Join the conversation in our [Discord server](https://discord.gg/ZajFQEjgFw).
2. Send us suggestions, questions, or feature requests by creating a [New Issue](https://github.com/theam/ellmental/issues/new).
3. Look at the [Open Issues](https://github.com/theam/ellmental/issues), choose one that interests you, and start contributing.
4. Spread the word about eLLMental!
Expand Down
68 changes: 33 additions & 35 deletions docs-site/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const darkCodeTheme = require('prism-react-renderer/themes/dracula');
/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'eLLMental',
favicon: 'img/favicon.png',
favicon: 'img/favicon.svg',

// Set the production url of your site here
url: 'https://docs.ellmental.com',
Expand Down Expand Up @@ -51,41 +51,39 @@ const config = {
],
plugins: [require.resolve('docusaurus-plugin-fathom')],
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
// Replace with your project's social card
image: 'img/logoellmental.png',
stylesheets: [
"https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap",
],
fathomAnalytics: {
siteId: 'HUKFMRPY',
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
// Replace with your project's social card
image: 'img/eLLMental-logo-black.svg',
stylesheets: [],
fathomAnalytics: {
siteId: 'HUKFMRPY',
},
navbar: {
logo: {
alt: 'eLLMental Logo',
src: '/img/eLLMental-logo-black.svg',
srcDark: '/img/eLLMental-logo-white.svg',
},
navbar: {
logo: {
alt: 'eLLMental Logo',
src: '/img/eLLMental-logo-black.png',
srcDark: '/img/eLLMental-logo-white.png'
items: [
{
href: 'https://github.com/theam/eLLMental',
label: 'GitHub',
position: 'right',
},
items: [
{
href: 'https://github.com/theam/eLLMental',
label: 'GitHub',
position: 'right',
},
{
href: 'https://discord.gg/34cBbvjjAx',
label: 'Discord',
position: 'right',
},
],
},
prism: {
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
additionalLanguages: ['java'],
},
}),
{
href: 'https://discord.gg/ZajFQEjgFw',
label: 'Discord',
position: 'right',
},
],
},
prism: {
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
additionalLanguages: ['java'],
},
}),
};

module.exports = config
module.exports = config;
16 changes: 12 additions & 4 deletions docs-site/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
* bundles Infima by default. Infima is a CSS framework designed to
* work well for content-centric websites.
*/
@import url('./fonts.css');

/* You can override the default Infima variables here. */
:root {
--ifm-color-primary: #1B6DFF;
font-family: 'Noi Grotesk';
--ifm-color-primary: #008FDB;
--ifm-color-primary-dark: #29784c;
--ifm-color-primary-darker: #277148;
--ifm-color-primary-darkest: #205d3b;
Expand All @@ -16,12 +18,13 @@
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
--ifm-navbar-height: 5rem;
--ifm-font-family-base: 'Poppins', sans-serif;
--ifm-font-family-base: 'Noi Grotesk';
}

/* For readability concerns, you should choose a lighter palette in dark mode. */
[data-theme='dark'] {
--ifm-color-primary: #5391FF;
font-family: 'Noi Grotesk';
--ifm-color-primary: #008FDB;
--ifm-color-primary-dark: #21af90;
--ifm-color-primary-darker: #1fa588;
--ifm-color-primary-darkest: #1a8870;
Expand All @@ -30,13 +33,18 @@
--ifm-color-primary-lightest: #4fddbf;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
--ifm-navbar-height: 5rem;
--ifm-font-family-base: 'Poppins', sans-serif;
--ifm-font-family-base: 'Noi Grotesk';
}

.navbar__logo {
height: 1.5rem;
}

.navbar__logo img {
height: 150%;
margin-top: -5px;
}

.hiddenh1s > h1 {
display: none;
}
11 changes: 11 additions & 0 deletions docs-site/src/css/fonts.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
@font-face {
font-family: 'Noi Grotesk';
src: url('/fonts/NoiGrotesk-Regular.ttf') format('truetype');
font-weight: normal;
}

@font-face {
font-family: 'Noi Grotesk';
src: url('/fonts/NoiGrotesk-Semibold.ttf') format('truetype');
font-weight: bold;
}
Binary file added docs-site/static/fonts/NoiGrotesk-Regular.ttf
Binary file not shown.
Binary file added docs-site/static/fonts/NoiGrotesk-Semibold.ttf
Binary file not shown.
11 changes: 11 additions & 0 deletions docs-site/static/img/eLLMental-logo-black.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions docs-site/static/img/eLLMental-logo-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions docs-site/static/img/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading