13 lines
291 B
TypeScript
13 lines
291 B
TypeScript
import Hero from "@/components/content/Hero";
|
|
import type { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Uses — Angel Mankel",
|
|
};
|
|
|
|
export default function UsesPage() {
|
|
return (
|
|
<Hero label="Uses" subtitle="Tools and technologies I use in my work."/>
|
|
);
|
|
}
|