Skip to content

Commit be00e73

Browse files
Add LinkedIn, styles adjustments newsletter button and contact
1 parent 3098008 commit be00e73

File tree

4 files changed

+10
-14
lines changed

4 files changed

+10
-14
lines changed

CHANGELOG.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
5656
- who we are section to about page
5757
- still got questions section to about page
5858
- Contact us cards section to contact page
59-
59+
- Linkedin link to footer
6060

6161
### Fixed
6262

@@ -72,14 +72,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7272
- updated mobile nav to automatically close when page route change is completed
7373
- adjust flex-basis of a few sections in the about page to better match the design file
7474
- removed unused import and comments from development stage
75-
76-
77-
### Updated
78-
7975
- prettierrc "end of line" to auto
8076
- .env-template to include SENDGRID_API_KEY
81-
- fixed next.js warning - no stylesheets in head component
82-
(added _document.js and moved google fonts into _document.js)
83-
- refactor CardColumns to accept an array of card objects as props
84-
85-
77+
- next.js warning - no stylesheets in head component
78+
- CardColumns refactoring to accept an array of card objects as props
79+
- styles on newsletter button and contact page

styles/Contact.module.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@
145145
}
146146

147147
@include desktop {
148-
height: 42rem;
148+
height: 32rem;
149149
}
150150

151151
&__response_message {

styles/SubmitButton.module.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,10 @@
4040
border: 1px solid $dark-bg-color;
4141
}
4242

43-
@include desktop {
43+
@include large-desktop {
4444
min-width: 12rem;
45+
border-radius: 3rem;
46+
padding: 0.7rem 0;
4547
}
4648
}
4749
}

utils/links.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ export const linksSocial = [
88
{
99
id: 1,
1010
text: 'LinkedIn',
11-
href: '#',
11+
href: 'https://www.linkedin.com/company/web-dev-path/',
1212
src: '/images/svg/linkedin.svg',
1313
alt: 'Find us on LinkedIn',
14-
isVisible: false,
14+
isVisible: true,
1515
},
1616
{
1717
id: 2,

0 commit comments

Comments
 (0)