Merge pull request #213 from janhq/jan-182-drake

Updates:
- Color palette: Green -> Blue
- Screenshots in Light and Dark Mode
- Animation
This commit is contained in:
Drake Nguyen 2023-10-03 13:19:29 +07:00 committed by GitHub
commit cfb6e03d98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
15 changed files with 16361 additions and 1222 deletions

15166
docs/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -30,7 +30,8 @@
"tailwindcss": "^3.3.3" "tailwindcss": "^3.3.3"
}, },
"devDependencies": { "devDependencies": {
"@docusaurus/module-type-aliases": "2.4.1" "@docusaurus/module-type-aliases": "2.4.1",
"tailwindcss-animate": "^1.0.7"
}, },
"browserslist": { "browserslist": {
"production": [ "production": [

View File

@ -39,7 +39,7 @@ export default function HomepageHero() {
)} )}
{/* Main hero block */} {/* Main hero block */}
<div className="py-24 sm:py-32 lg:pb-40"> <div className="py-24 sm:py-32 lg:pb-40 animate-in fade-in zoom-in-50 duration-1000 ">
<div className="mx-auto max-w-7xl px-6 lg:px-8"> <div className="mx-auto max-w-7xl px-6 lg:px-8">
{/* Hero text and buttons */} {/* Hero text and buttons */}
<div className="mx-auto max-w-2xl text-center"> <div className="mx-auto max-w-2xl text-center">
@ -79,13 +79,14 @@ export default function HomepageHero() {
src={ src={
colorMode === "dark" colorMode === "dark"
? // TODO replace with darkmode image ? // TODO replace with darkmode image
require("@site/static/img/desktop-llm-chat.png").default require("@site/static/img/desktop-llm-chat-dark.png").default
: require("@site/static/img/desktop-llm-chat.png").default : require("@site/static/img/desktop-llm-chat-light.png").default
} }
alt="App screenshot" alt="App screenshot"
width={2432} width={2432}
className="mt-16 rounded-lg md:rounded-2xl lg:rounded-3xl bg-white/5 shadow-2xl ring-1 ring-white/10 sm:mt-24" className="mt-16 rounded-lg md:rounded-2xl lg:rounded-3xl bg-white/5 shadow-2xl ring-1 ring-white/10 sm:mt-24"
/> />
</div> </div>
</div> </div>
{/* Background top gradient styling */} {/* Background top gradient styling */}

View File

@ -58,7 +58,7 @@ export default function HomepageSectionOne() {
/> />
{feature.name} {feature.name}
</dt>{" "} </dt>{" "}
<dd className="inline">{feature.description}</dd> <dt>{feature.description}</dt>
</div> </div>
))} ))}
</dl> </dl>
@ -71,7 +71,7 @@ export default function HomepageSectionOne() {
? // TODO replace with darkmode image ? // TODO replace with darkmode image
require("@site/static/img/desktop-explore-models-dark.png") require("@site/static/img/desktop-explore-models-dark.png")
.default .default
: require("@site/static/img/desktop-explore-models.png") : require("@site/static/img/desktop-explore-models-light.png")
.default .default
} }
alt="Product screenshot" alt="Product screenshot"

View File

@ -58,7 +58,7 @@ export default function sectionTwo() {
/> />
{feature.name} {feature.name}
</dt>{" "} </dt>{" "}
<dd className="inline">{feature.description}</dd> <dt>{feature.description}</dt>
</div> </div>
))} ))}
</dl> </dl>
@ -68,8 +68,8 @@ export default function sectionTwo() {
src={ src={
colorMode === "dark" colorMode === "dark"
? // TODO replace with darkmode image ? // TODO replace with darkmode image
require("@site/static/img/desktop-model-settings.png").default require("@site/static/img/desktop-model-settings-dark.png").default
: require("@site/static/img/desktop-model-settings.png").default : require("@site/static/img/desktop-model-settings-light.png").default
} }
alt="Product screenshot" alt="Product screenshot"
className="w-[48rem] max-w-none rounded-xl shadow-xl ring-1 ring-gray-400/10 sm:w-[57rem] md:-ml-4 lg:-ml-0" className="w-[48rem] max-w-none rounded-xl shadow-xl ring-1 ring-gray-400/10 sm:w-[57rem] md:-ml-4 lg:-ml-0"

View File

@ -12,26 +12,25 @@
Full list of Infima variables: https://github.com/facebook/docusaurus/issues/3955#issuecomment-1521944593 Full list of Infima variables: https://github.com/facebook/docusaurus/issues/3955#issuecomment-1521944593
*/ */
:root { :root {
--ifm-color-primary: #2e8555; --ifm-color-primary: #2563EB; /* New Primary Blue */
--ifm-color-primary-dark: #29784c; --ifm-color-primary-dark: #204FCF; /* Darker Blue */
--ifm-color-primary-darker: #277148; --ifm-color-primary-darker: #1B45B7; /* Even Darker Blue */
--ifm-color-primary-darkest: #205d3b; --ifm-color-primary-darkest: #163C9D; /* Darkest Blue */
--ifm-color-primary-light: #33925d; --ifm-color-primary-light: #2974FF; /* Light Blue */
--ifm-color-primary-lighter: #359962; --ifm-color-primary-lighter: #3280FF; /* Lighter Blue */
--ifm-color-primary-lightest: #3cad6e; --ifm-color-primary-lightest: #3A8BFF; /* Lightest Blue */
--ifm-code-font-size: 95%; --ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1); --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
} }
/* For readability concerns, you should choose a lighter palette in dark mode. */ /* For readability concerns, you should choose a lighter palette in dark mode. */
[data-theme="dark"] { [data-theme="dark"] {
--ifm-color-primary: #25c2a0; --ifm-color-primary: #2563EB; /* New Primary Blue */
--ifm-color-primary-dark: #21af90; --ifm-color-primary-dark: #204FCF; /* Darker Blue */
--ifm-color-primary-darker: #1fa588; --ifm-color-primary-darker: #1B45B7; /* Even Darker Blue */
--ifm-color-primary-darkest: #1a8870; --ifm-color-primary-darkest: #163C9D; /* Darkest Blue */
--ifm-color-primary-light: #29d5b0; --ifm-color-primary-light: #2974FF; /* Light Blue */
--ifm-color-primary-lighter: #32d8b4; --ifm-color-primary-lighter: #3280FF; /* Lighter Blue */
--ifm-color-primary-lightest: #4fddbf; --ifm-color-primary-lightest: #3A8BFF; /* Lightest Blue */
--ifm-navbar-background-color: rgba(15, 23, 42);
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3); --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 389 KiB

After

Width:  |  Height:  |  Size: 434 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 435 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 379 KiB

After

Width:  |  Height:  |  Size: 129 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 244 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 186 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 192 KiB

View File

@ -9,5 +9,7 @@ module.exports = {
theme: { theme: {
extend: {}, extend: {},
}, },
plugins: [], plugins: [
require("tailwindcss-animate"),
],
}; };

File diff suppressed because it is too large Load Diff