13 lines
413 B
TypeScript
13 lines
413 B
TypeScript
import { PlaceholderPage } from "@/components/placeholder-page";
|
|
|
|
export default function LifePage() {
|
|
return (
|
|
<PlaceholderPage
|
|
eyebrow="Life journal"
|
|
title="生活分享"
|
|
description="技术之外的个人切面:日常、阅读、音乐、照片、旅行,以及阶段性的想法。"
|
|
items={["日常记录", "阅读和音乐", "照片和旅行", "一些想法"]}
|
|
/>
|
|
);
|
|
}
|