import { HeartIcon, HomeIcon } from "@heroicons/react/24/outline"; import { ChevronLeftIcon } from "@heroicons/react/24/solid"; 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 */} {/* --- End Title */} {/* --- Start Icons */}
{/* --- End Icons */}
); }; export default AppBar;