'use client'; import React from 'react'; import { motion } from 'framer-motion'; const navItems = [ { label: 'Workflow Engine', target: 'workflow-engine', }, { label: 'Agent Intelligence', target: 'agent-intelligence', }, { label: 'Architecture Blueprint', target: 'architecture-blueprint', }, { label: 'AMD Inference', target: 'amd-inference', }, ]; export default function Navbar() { const scrollToSection = (id: string) => { const section = document.getElementById(id); if (section) { section.scrollIntoView({ behavior: 'smooth', block: 'start', }); } }; return (
{/* Logo */}
window.scrollTo({ top: 0, behavior: 'smooth', }) } > SYSTEM FORGE
{/* Nav Links */}
{navItems.map((item, index) => ( scrollToSection(item.target) } style={{ background: 'transparent', border: 'none', cursor: 'pointer', color: '#8888AA', fontFamily: 'var(--font-mono)', fontSize: '0.72rem', letterSpacing: '0.12em', }} > {item.label} ))}
{/* Status */}
AMD READY
); }