36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
import Head from 'next/head';
|
|
|
|
interface CustomHeadProps {
|
|
title: string;
|
|
}
|
|
|
|
const CustomHead = ({ title }: CustomHeadProps) => {
|
|
return (
|
|
<Head>
|
|
<title>{title}</title>
|
|
<meta
|
|
name="description"
|
|
content="Ahmed Galadima, Senior QA Engineer, Automation Consultant, Software Development, Test Automation, CI/CD, DevOps"
|
|
/>
|
|
<meta
|
|
name="keywords"
|
|
content="Ahmed Galadima, Senior QA Engineer, Automation Consultant, Software Development, Test Automation, CI/CD, DevOps"
|
|
/>
|
|
<meta property="og:title" content="Ahmed Galadima's Portfolio" />
|
|
<meta
|
|
property="og:description"
|
|
content="A Senior QA Engineer, Automation Consultant. Software Development, Test Automation, CI/CD, DevOps"
|
|
/>
|
|
<meta property="og:image" content="https://imgur.com/4zi5KkQ.png" />
|
|
<meta property="og:url" content="https://vscode-portfolio.vercel.app" />
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
</Head>
|
|
);
|
|
};
|
|
|
|
export default CustomHead;
|
|
|
|
CustomHead.defaultProps = {
|
|
title: 'Ahmed Galadima | Portfolio',
|
|
};
|