diff --git a/thoughts-frontend/app/page.tsx b/thoughts-frontend/app/page.tsx index 0c034c4..91c778b 100644 --- a/thoughts-frontend/app/page.tsx +++ b/thoughts-frontend/app/page.tsx @@ -4,8 +4,7 @@ import { getFeed, getMe, Me, FeedOptions, FeedSortOption } from "@/lib/api"; import { FiltersSortingPanel } from "@/components/filters-sorting-panel"; import { ThoughtForm } from "@/components/thought-form"; import { EmptyState } from "@/components/empty-state"; -import { Button } from "@/components/ui/button"; -import Link from "next/link"; +import { LandingPage } from "@/components/landing-page"; import { PopularTags } from "@/components/popular-tags"; import { ThoughtThread } from "@/components/thought-thread"; import { buildThoughtThreads } from "@/lib/utils"; @@ -150,114 +149,3 @@ async function FeedPage({ ); } -function LandingPage() { - return ( -
- {/* Ambient orbs */} -
-
-
- - {/* Hero card */} -
- {/* Gloss sweep */} -
- -

- Welcome to Thoughts -

-

- A federated social network for short-form thoughts. -
- Connect with the Fediverse. -

- -
- - -
- - {/* Fediverse badge */} -
- - - Works with Mastodon, Pixelfed & more - -
-
-
- ); -}