a tool for shared writing and social publishing
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}