Files
portfolio/app/about/page.tsx
T

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"/>
);
}