Your calm window into the Atmosphere. morgen.blue
rss atproto
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(copy): refresh welcome + login to highlight reading + social

Welcome: collapse two paragraphs into one and reframe Morgenblau as a
reader plus a quiet square (posting, ad-hoc discovery), not just a
morning ritual. Button: "Enter" → "Begin".

Login: swap "Discover. Consume. Create." for "Read. Find. Share." and
adjust subhead to "A calmer way to be on the open web."

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

+10 -12
+3 -3
resources/js/pages/auth/login.tsx
··· 21 21 <Head title="Sign in" /> 22 22 23 23 <header className="space-y-1"> 24 - <h1>Discover. Consume. Create.</h1> 24 + <h1>Read. Find. Share.</h1> 25 25 <p className="text-sm text-balance text-muted-foreground"> 26 - A calmer way to explore the web. Powered by RSS and the AT 27 - Protocol. 26 + A calmer way to be on the open web. Powered by RSS and the 27 + AT Protocol. 28 28 </p> 29 29 </header> 30 30
+7 -9
resources/js/pages/welcome.tsx
··· 1 - import { Head, usePage } from '@inertiajs/react'; 2 - import { useEffect } from 'react'; 3 1 import AppLogoIcon from '@/components/app-logo-icon'; 4 2 import { Button } from '@/components/ui/button'; 5 3 import { Window } from '@/components/window'; 6 4 import { visitWithTransition } from '@/lib/view-transition'; 7 5 import { dashboard, login } from '@/routes'; 6 + import { Head, usePage } from '@inertiajs/react'; 7 + import { useEffect } from 'react'; 8 8 9 9 export default function Welcome() { 10 10 const { auth } = usePage().props; ··· 48 48 /> 49 49 <div className="space-y-3"> 50 50 <h1>Morgenblau</h1> 51 - <p className="max-w-md text-base text-balance"> 52 - A morning edition of the open web. 53 - </p> 54 - <p className="max-w-md text-sm font-light text-pretty text-white/80"> 55 - Pick your sources. Read once a day. Close the 56 - tab. 51 + <p className="max-w-xl text-base text-balance"> 52 + A reading room and a quiet square on the open 53 + web. Read what you follow, post what you find, 54 + see what others are reading. 57 55 </p> 58 56 </div> 59 57 <Button ··· 61 59 className="text-base" 62 60 onClick={() => visitWithTransition(target)} 63 61 > 64 - Enter 62 + Begin 65 63 </Button> 66 64 </div> 67 65 </Window>