import { ArrowLeftIcon, HeartIcon, HomeIcon } from "@heroicons/react/24/outline"; import Head from "next/head"; import { useRouter } from "next/router"; import Link from "./Link"; const AppBar = ({ title }) => { const router = useRouter(); return ( <> { title } - Indoteknik
{/* --- Start Title */}

{ title }

{/* --- End Title */} {/* --- Start Icons */}
{/* --- End Icons */}
); }; export default AppBar;