From cb60ffd7489241668c873d99055da6dd3702531e Mon Sep 17 00:00:00 2001 From: John Jeong Date: Fri, 28 Nov 2025 10:45:17 +0900 Subject: [PATCH] feat(navigation): add Templates link to header and footer --- apps/web/src/components/footer.tsx | 8 ++++++++ apps/web/src/components/header.tsx | 1 + 2 files changed, 9 insertions(+) diff --git a/apps/web/src/components/footer.tsx b/apps/web/src/components/footer.tsx index f7f9a1ec37..2b28448a0c 100644 --- a/apps/web/src/components/footer.tsx +++ b/apps/web/src/components/footer.tsx @@ -154,6 +154,14 @@ export function Footer() { Press Kit +
  • + + Templates + +
  • diff --git a/apps/web/src/components/header.tsx b/apps/web/src/components/header.tsx index a3489e80b2..38f74da2ea 100644 --- a/apps/web/src/components/header.tsx +++ b/apps/web/src/components/header.tsx @@ -22,6 +22,7 @@ const featuresList = [ { to: "/product/ai-assistant", label: "AI Assistant" }, { to: "/product/mini-apps", label: "Mini Apps" }, { to: "/product/workflows", label: "Workflows", badge: "Coming Soon" }, + { to: "/templates", label: "Templates" }, ]; export function Header() {