first commit

This commit is contained in:
2025-05-13 12:12:47 +02:00
commit c37cf55f67
75 changed files with 13258 additions and 0 deletions

35
components/Head.tsx Normal file
View 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',
};