chore: update components folder structure, add constants, update existing layout components, scaffold pages

This commit is contained in:
2026-05-27 19:52:41 -07:00
parent 6193c57655
commit 50fadddbe3
16 changed files with 228 additions and 237 deletions
+3 -7
View File
@@ -1,16 +1,12 @@
import Hero from "@/components/content/Hero";
import type { Metadata } from "next";
import Link from "next/link";
export const metadata: Metadata = {
export const metadata: Metadata = {
title: "Uses — Angel Mankel",
};
export default function UsesPage() {
return (
<main className="mx-auto max-w-2xl px-6 py-24">
<h1 className="text-3xl font-semibold mb-12">Uses</h1>
test
</main>
<Hero label="Uses" subtitle="Tools and technologies I use in my work."/>
);
}