a tool for shared writing and social publishing
0

Configure Feed

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

leaflet / app / page.tsx
391 B 14 lines
1import type { Metadata } from "next"; 2import { AboutPage } from "./about/AboutPage"; 3 4export const metadata: Metadata = { 5 title: "Leaflet — social publishing on the Atmosphere", 6 description: 7 "A simple and powerful platform for social publishing — blogs, newsletters, and more!", 8}; 9 10export const revalidate = 3600; 11 12export default function RootPage() { 13 return <AboutPage />; 14}