first commit
This commit is contained in:
35
components/Head.tsx
Normal file
35
components/Head.tsx
Normal file
@@ -0,0 +1,35 @@
|
||||
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',
|
||||
};
|
||||
Reference in New Issue
Block a user