13 lines
242 B
TypeScript
13 lines
242 B
TypeScript
import Hero from "@/components/content/Hero";
|
|
import type { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "About — Angel Mankel",
|
|
};
|
|
|
|
export default function AboutPage() {
|
|
return (
|
|
<Hero label="About"/>
|
|
);
|
|
}
|