import { useRouter } from "next/router";
import React from "react";
import LayoutWithNav from "@/components/layout/LayoutWithNav";
import StandardContainer from "@/components/layout/StandardContainer";
import { NextSeo } from "next-seo";

function HumanOfAshanti() {
  const { human } = useRouter().query;
  return (
    <LayoutWithNav page_title="Favorites" description="Favorites">
      <NextSeo
        title={`Humans of Ashanti | Ashantiweb.com`}
        description={`View all your favorite personalities on ashantiweb`}
      />
      <StandardContainer>
        <h2>Humans of {human}</h2>
      </StandardContainer>
    </LayoutWithNav>
  );
}

export default HumanOfAshanti;
