import LayoutWithNav from "@/components/layout/LayoutWithNav";
import StandardContainer from "@/components/layout/StandardContainer";
import { Col, Row } from "antd";
import { NextSeo } from "next-seo";
import React from "react";

function Humans() {
  return (
    <LayoutWithNav page_title="Favorites" description="Favorites">
      <NextSeo
        title={`Humans of Ashanti | Ashantiweb.com`}
        description={`View all your favorite personalites on ashantiweb`}
      />
      <StandardContainer>
       <h2>Humans of Ashanti</h2>
      </StandardContainer>
    </LayoutWithNav>
  );
}

export default Humans;
