import Head from "next/head"; import Image from "next/image"; import WCard from "../components/werefox-card"; import MS from "../components/mutant-standard"; export default function HRT({ is_home, page_title, card_title, children }) { if(is_home) { return (
{page_title}

{" "} Pixel Alexis!{" "} {"- "} {card_title}

{children}
); } else { return (
{page_title}

{" "} Pixel Alexis!{" "} {"- "} {card_title}

{children}
); } }