- /projects: merged page with featured (top) + archive (bottom) - titles mirror homelab pattern: projects/featured, projects/archive - nav: archive → projects - home: drop Skills section and featured grid - /archive → /projects via meta-refresh + JS redirect stub
19 lines
423 B
TypeScript
19 lines
423 B
TypeScript
import type { Metadata } from "next";
|
|
import Hero from "@/components/Hero";
|
|
import Timeline from "@/components/Timeline";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Tyler Koenig",
|
|
description:
|
|
"SOC Helpdesk I by day, building beyond the title. Projects in AI tooling, mobile apps, infrastructure, and more.",
|
|
};
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<Hero />
|
|
<Timeline />
|
|
</>
|
|
);
|
|
}
|