2022-03-20 00:09:53 +03:30
|
|
|
|
import Footer from "@/Footer";
|
2022-02-28 14:06:38 +03:30
|
|
|
|
import GoBack from "@/GoBack";
|
|
|
|
|
|
import type { NextPage } from "next";
|
|
|
|
|
|
import Head from "next/head";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const PageLayout: NextPage = ({ children }) => {
|
|
|
|
|
|
return (
|
2022-03-20 00:09:53 +03:30
|
|
|
|
<div className="w- bg-dark-primary p-5">
|
2022-02-28 14:06:38 +03:30
|
|
|
|
<Head>
|
|
|
|
|
|
<title>Amirmoghi3 | امیرحسین مقیسه</title>
|
|
|
|
|
|
<meta name="description" content="amir hossein moghiseh personal page" />
|
|
|
|
|
|
<link rel="icon" href="/favicon.ico" />
|
|
|
|
|
|
</Head>
|
|
|
|
|
|
<main className='bg-light-primary w-full'>
|
|
|
|
|
|
<GoBack />
|
|
|
|
|
|
{children}
|
2022-03-20 00:09:53 +03:30
|
|
|
|
{/* <Footer /> */}
|
2022-02-28 14:06:38 +03:30
|
|
|
|
</main>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export default PageLayout;
|