mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-11 18:45:41 +00:00
Ryan Freeman
40913ad401
All checks were successful
Build And Publish / BuildAndPublish (push) Successful in 2m43s
48 lines
2.1 KiB
Plaintext
48 lines
2.1 KiB
Plaintext
import {ArticleLayout} from '../../../components/layouts/ArticleLayout'
|
|
import {createSlug} from '../../../lib/createSlug'
|
|
import {metadata as _metadata} from '../../../lib/generateMetadata'
|
|
|
|
export const meta = {
|
|
authors: 'Ryan Freeman',
|
|
title: 'A personal journey in software engineering',
|
|
date: '2022-12-04',
|
|
description: 'Hello there! If you\'re reading this, you\'ve likely stumbled upon my website — welcome! My name is Ryan Freeman, and I\'m a full-stack developer with a passion for creating intuitive and dynamic web applications.',
|
|
alternates: {
|
|
canonical: `/writing/${createSlug('A personal journey in software engineering')}`
|
|
}
|
|
}
|
|
|
|
export const metadata = _metadata({
|
|
title: meta.title,
|
|
heading: meta.title,
|
|
description: meta.description,
|
|
type: 'article',
|
|
alternates: meta.alternates
|
|
})
|
|
|
|
export default (props) => <ArticleLayout
|
|
title={meta.title}
|
|
date={meta.date}
|
|
description={meta.description}
|
|
slug={createSlug(meta.title)}
|
|
{...props} />
|
|
|
|
Hello there!
|
|
|
|
If you're reading this, you've likely stumbled upon my website — welcome! My name is Ryan Freeman, and I'm a full-stack developer
|
|
with a passion for creating intuitive and dynamic web applications.
|
|
|
|
I have been working in the aviation industry for Aer Lingus since February 2022. My specialities include React, Java
|
|
and AWS technologies, and I have a strong focus on building scalable and reliable solutions.
|
|
|
|
This website is a showcase of my work, as well as a platform for me to share my thoughts and insights in the world of software engineering.
|
|
Here's what you can expect to find:
|
|
|
|
- A portfolio of my past and current projects, showcasing the range of applications I have developed and the technologies I have used.
|
|
- Blog posts on a variety of topics, from the latest trends in software engineering to my personal experiences and insights as a full-stack developer.
|
|
- Links to connect with me and to download my most up-to-date CV.
|
|
|
|
I hope that my website provides you with a glimpse into my world as a full-stack developer, and I invite you to explore and learn more about what I do.
|
|
|
|
Thanks for visiting, and I hope to hear from you soon!
|