chore: use quick-start as default page (#22384)

This commit is contained in:
Jason Rasmussen 2025-09-25 12:50:34 -04:00 committed by GitHub
parent 7c3e871c7a
commit 913f543307
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 7 additions and 33 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 233 KiB

View File

@ -1,27 +0,0 @@
---
sidebar_position: 1
---
# Welcome to Immich
<img
src={require('./img/social-preview-light.webp').default}
alt="Immich - Self-hosted photos and videos backup tool"
data-theme="light"
/>
## Welcome!
Hello, I am glad you are here.
My name is Alex. I am an Electrical Engineer by schooling, then turned into a Software Engineer by trade and the pure love of problem solving.
We were lying in bed with our newborn, and my wife said, "We are starting to accumulate a lot of photos and videos of our baby, and I don't want to pay for **_App-Which-Must-Not-Be-Named_** anymore. You always want to build something for me, so why don't you build me an app which can do that?"
That was how the idea started to grow in my head. After that, I began to find existing solutions in the self-hosting space with similar backup functionality and the performance level of the **_App-Which-Must-Not-Be-Named_**. I found that the current solutions mainly focus on the gallery-type application. However, I want a simple-to-use backup tool with a native mobile app that can view photos and videos efficiently. So I set sail on this journey as a hungry engineer on the hunt.
Another motivation that pushed me to deliver my execution of the **_App-Which-Must-Not-Be-Named_** alternative or replacement is for contributing back to the open source community that I have greatly benefited from over the years.
I'm proud to share this creation with you, which values privacy, memories, and the joy of looking back at those moments in an easy-to-use and friendly interface.
If you like the application or it helps you in some way, please consider [supporting](./support-the-project.md) the project. It will help me to continue to develop and maintain the application.

View File

@ -88,7 +88,7 @@ const config = {
position: 'right',
},
{
to: '/overview/welcome',
to: '/overview/quick-start',
position: 'right',
label: 'Docs',
},
@ -132,8 +132,8 @@ const config = {
title: 'Overview',
items: [
{
label: 'Welcome',
to: '/overview/welcome',
label: 'Quick start',
to: '/overview/quick-start',
},
{
label: 'Installation',

View File

@ -1,5 +1,5 @@
import { Redirect } from '@docusaurus/router';
export default function Home(): JSX.Element {
return <Redirect to="/overview/welcome" />;
return <Redirect to="/overview/quick-start" />;
}

View File

@ -1,4 +1,4 @@
/ /overview/welcome 307
/ /overview/quick-start 307
/mobile-app-beta-program /features/mobile-app 307
/contribution-guidelines /overview/support-the-project#contributing 307
/install /install/docker-compose 307
@ -29,5 +29,6 @@
/features/smart-search /features/searching 307
/guides/api-album-sync /community-projects 307
/guides/remove-offline-files /community-projects 307
/overview/introduction /overview/welcome 307
/overview/introduction /overview/quick-start 307
/overview/welcome /overview/quick-start 307
/docs/* /:splat 307