Skip to content

Wrong image bug41 #42

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jul 31, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/kubernetes-components-part_3.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---

title: Kubernetes Components
subtitle: A at the building blocks in simple terms for quick understanding
subtitle: A quick look at the building blocks in simple terms for quick understanding
date: '2020-07-12'
categories: ['kubernetes', 'devops', 'basics']
keywords: ['kubernetes', 'devops', 'basics', 'series', 'part_3', 'components']
Expand Down
6 changes: 3 additions & 3 deletions gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module.exports = {
'Technical Articles',
'Programming Blog',
],
title: "Anit Shrestha Manandhar | Software Development Service | Blog",
title: "Blog By Anit Shrestha Manandhar",
titleAlt: 'codeanit.com',
description:
"Anit is a hands-on code experienced software engineer who blogs and provides software development service.",
Expand Down Expand Up @@ -76,8 +76,8 @@ module.exports = {
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Technical Blog by Anit Shrestha Manandhar.`,
short_name: `blog by codeanit`,
name: `Blog By Anit Shrestha Manandhar.`,
short_name: `Blog By Anit`,
start_url: `/`,
background_color: `#ffffff`,
theme_color: `#ffffff`,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "codeanit.com",
"author": "Anit Shrestha Manandhar @codeanit <[email protected]>",
"description": "Anit Shrestha Manandhar | Software Development Service | Blog",
"description": "Blog By Anit",
"version": "0.5.0",
"private": true,
"scripts": {
Expand Down
6 changes: 1 addition & 5 deletions src/components/Printer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,17 +108,13 @@ const TitleWrapper = styled('div')`
width: 800px;

h1 {
min-height: 60px;
max-height: 60px;
font-weight: 600;
font-size: 42px;
line-height: 3px;
}

h2 {
font-weight: bold;
font-size: 30px;
line-height: 15px;
}

p {
Expand All @@ -135,8 +131,8 @@ const PrinterComponent = ( ogData ) => (
<Matrix/>
<TitleWrapper>
<Logo height='150' width='150' />
<h2>{ ogData.subtitle }</h2>
<h1>{ ogData.title }</h1>
<h2>{ ogData.subtitle }</h2>
<p>Blog by Anit Shrestha Manandhar</p>
<p>codeanit.com/blog/{ogData.slug}</p>
</TitleWrapper>
Expand Down
3 changes: 1 addition & 2 deletions src/pages/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@ const AboutPage = () => {
return (
<MainBlock>
<Seo />
<br/>
<Box>
<br/>
<br/>
<Heading fontSize={57} mb={3}>About Me</Heading>
<p>I am Anit Shrestha Manandhar from Kathmandu, Nepal. I have completed my Bachelor's in Information Management from Tribhuvan University in 2009. I have completed a certification course Diploma in Information Technology from NIIT in 2003-2004.</p>
<p>I have been working professionally as software engineer since 2007. I have worked mostly as an object oriented backend developer. I can code proficiently in Java, C#, PHP and JavaScript and I am improving my skills in Golang and TypeScript. Although I can work with frontend frameworks like React and Angular, I do not prefer to use the “Full Stack” tag. “Frontend” and “Backend” are two different worlds which would not mix easily and are difficult to live in at the same time. I strongly believe in the “DevOps” philosophy to automate the end to end processes by removing any bottlenecks in the discovery, design, development and delivery processes that require years of experience and expertise.</p>
Expand Down
2 changes: 0 additions & 2 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,6 @@ const IndexPage = ({ data, location }: Props) => {
<MainBlock>
<Seo />
<br/>
<br/>
<br/>
<Heading fontSize={33} mb={6}>Hello, World!</Heading>
<Heading fontSize={57} mb={6}>
<Link style={{ textDecoration: `none`, color: theme.dark ? `white` : `black`}} to={`/about`}>I am Anit Shrestha Manandhar.</Link>
Expand Down
3 changes: 1 addition & 2 deletions src/templates/Blog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const Blog: React.FC<BlogProps> = (props) => {
const { site } = layoutProps;
const progressBarTarget = React.createRef<HTMLDivElement>();
const parsedDate = new Date(Date.parse(date));
const SeoBanner = `/opengraph-images/${slugify(title)}.png`;
const SeoBanner = `/opengraph-images/${slug}.png`;

return (
<article className="h-entry">
Expand All @@ -66,7 +66,6 @@ const Blog: React.FC<BlogProps> = (props) => {
date={date}
/>
<br/>
<br/>
<Hero id="top">
<Heading fontSize={50} mb={1}>{title}</Heading>
{subtitle ? <Heading fontSize={21} mb={2}>{subtitle}</Heading> : null}
Expand Down