Skip to content

Commit ab65585

Browse files
committedJul 31, 2020
Removed <br/> before first <Heading>.
1 parent ceb9856 commit ab65585

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed
 

‎src/pages/about.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@ const AboutPage = () => {
1515
return (
1616
<MainBlock>
1717
<Seo />
18+
<br/>
1819
<Box>
19-
<br/>
20-
<br/>
2120
<Heading fontSize={57} mb={3}>About Me</Heading>
2221
<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>
2322
<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>

‎src/pages/index.tsx

-2
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,6 @@ const IndexPage = ({ data, location }: Props) => {
7575
<MainBlock>
7676
<Seo />
7777
<br/>
78-
<br/>
79-
<br/>
8078
<Heading fontSize={33} mb={6}>Hello, World!</Heading>
8179
<Heading fontSize={57} mb={6}>
8280
<Link style={{ textDecoration: `none`, color: theme.dark ? `white` : `black`}} to={`/about`}>I am Anit Shrestha Manandhar.</Link>

‎src/templates/Blog.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ const Blog: React.FC<BlogProps> = (props) => {
6666
date={date}
6767
/>
6868
<br/>
69-
<br/>
7069
<Hero id="top">
7170
<Heading fontSize={50} mb={1}>{title}</Heading>
7271
{subtitle ? <Heading fontSize={21} mb={2}>{subtitle}</Heading> : null}

0 commit comments

Comments
 (0)
Please sign in to comment.