You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
232 B
TypeScript

export const title = "Welcome to my page";
export const layout = "main.tsx";
export default (data) => (
<>
<h1 class="text-red w-10">{data.title}</h1>
<p>This is my first post using lume. I hope you like it!</p>
</>
);