13 lines
298 B
TypeScript
13 lines
298 B
TypeScript
import Hero from "@/components/content/Hero";
|
|
import type { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Work — Angel Mankel",
|
|
};
|
|
|
|
export default function ProjectsPage() {
|
|
return (
|
|
<Hero label="Projects" subtitle="Selected work, written as postmortems." />
|
|
);
|
|
}
|