diff --git a/docs/src/css/custom.css b/docs/src/css/custom.css index 5ee7bf7393e57..18246e6432861 100644 --- a/docs/src/css/custom.css +++ b/docs/src/css/custom.css @@ -7,11 +7,11 @@ @tailwind components; @tailwind utilities; -@import url('https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap'); +@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); html, button { - font-family: 'Overpass', sans-serif; + font-family: 'Be Vietnam Pro', sans-serif; } img { @@ -29,6 +29,7 @@ img { --ifm-color-primary-lightest: #4250af; --ifm-code-font-size: 95%; --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1); + --ifm-background-color: #f9f8fb; } /* For readability concerns, you should choose a lighter palette in dark mode. */ @@ -40,8 +41,8 @@ img { --ifm-color-primary-light: #d5e4fc; --ifm-color-primary-lighter: #e9f1fe; --ifm-color-primary-lightest: #ffffff; - --ifm-background-color: #000000; --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3); + --ifm-background-color: #070a14; } div[class^='announcementBar_'] { diff --git a/docs/src/pages/index.tsx b/docs/src/pages/index.tsx index a375efb8a8590..f616c17e00949 100644 --- a/docs/src/pages/index.tsx +++ b/docs/src/pages/index.tsx @@ -7,41 +7,74 @@ function HomepageHeader() { return (
-
+
Immich logo -
-

- Self-hosted photo and - video management solution +

+
+
+ Immich logo +
+

+ Self-hosted{' '} + + photo and + video management{' '} + + solution +

+ +

+ Easily back up, organize, and manage your photos on your own server. Immich helps you + browse, search and organize your photos and videos with ease, without + sacrifice your privacy.

+
Get started - Demo portal - - - - Discord + Live Demo
- screenshots + screenshots + +
+
+
+ + Immich logo + +
+

Download mobile app

+

+ Download Immich app and start backing up your photos and videos securely to your own server +

+
+ + app qr code
); @@ -61,13 +101,9 @@ function HomepageHeader() { export default function Home(): JSX.Element { return ( - + -
+

This project is available under GNU AGPL v3 license.

Privacy should not be a luxury

diff --git a/docs/static/img/app-qrcode-dark.svg b/docs/static/img/app-qrcode-dark.svg new file mode 100644 index 0000000000000..faa567a52aedc --- /dev/null +++ b/docs/static/img/app-qrcode-dark.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/docs/static/img/app-qrcode-light.svg b/docs/static/img/app-qrcode-light.svg new file mode 100644 index 0000000000000..c7121248f3cb0 --- /dev/null +++ b/docs/static/img/app-qrcode-light.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/docs/static/img/immich-screenshots.png b/docs/static/img/immich-screenshots.png deleted file mode 100644 index 6123279f2d652..0000000000000 Binary files a/docs/static/img/immich-screenshots.png and /dev/null differ diff --git a/docs/static/img/immich-screenshots.webp b/docs/static/img/immich-screenshots.webp deleted file mode 100644 index 62cc036797179..0000000000000 Binary files a/docs/static/img/immich-screenshots.webp and /dev/null differ diff --git a/docs/static/img/logomark-dark.png b/docs/static/img/logomark-dark.png new file mode 100644 index 0000000000000..6a5f38750ea43 Binary files /dev/null and b/docs/static/img/logomark-dark.png differ diff --git a/docs/static/img/logomark-light.png b/docs/static/img/logomark-light.png new file mode 100644 index 0000000000000..5ee9b54a477e0 Binary files /dev/null and b/docs/static/img/logomark-light.png differ diff --git a/docs/static/img/screenshot-dark.webp b/docs/static/img/screenshot-dark.webp new file mode 100644 index 0000000000000..8455548f5e5f3 Binary files /dev/null and b/docs/static/img/screenshot-dark.webp differ diff --git a/docs/static/img/screenshot-light.webp b/docs/static/img/screenshot-light.webp new file mode 100644 index 0000000000000..33365cec12bae Binary files /dev/null and b/docs/static/img/screenshot-light.webp differ diff --git a/docs/tailwind.config.js b/docs/tailwind.config.js index 1ef26facbb621..98f69bcd59b7a 100644 --- a/docs/tailwind.config.js +++ b/docs/tailwind.config.js @@ -11,13 +11,13 @@ module.exports = { colors: { // Light Theme 'immich-primary': '#4250af', - 'immich-bg': 'white', + 'immich-bg': '#f9f8fb', 'immich-fg': 'black', 'immich-gray': '#F6F6F4', // Dark Theme 'immich-dark-primary': '#adcbfa', - 'immich-dark-bg': 'black', + 'immich-dark-bg': '#070a14', 'immich-dark-fg': '#e5e7eb', 'immich-dark-gray': '#212121', },