Skip to content

Commit

Permalink
+ removed Image
Browse files Browse the repository at this point in the history
  • Loading branch information
BE-CH committed Jul 13, 2021
1 parent fdc65ef commit be89644
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 17 deletions.
5 changes: 4 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
{
"extends": ["next", "next/core-web-vitals"]
"extends": "next",
"rules": {
"@next/next/no-img-element": "off"
}
}
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,16 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
"lint": "next lint",
"export": "next build && next export"
},
"dependencies": {
"next": "11.0.1",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"eslint": "7.30.0",
"eslint-config-next": "11.0.1"
"eslint": "^7.30.0",
"eslint-config-next": "^11.0.1"
}
}
17 changes: 8 additions & 9 deletions pages/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import Head from 'next/head'
import Image from 'next/image'
import styles from '../styles/Home.module.css'

export default function Home() {
Expand All @@ -19,7 +18,7 @@ export default function Home() {

<p className={styles.description}>Currently working on your <code className={styles.code}>website</code>!
</p>
<p className={styles.small}>That's why there isn't much here 😅</p>
<p className={styles.small}>That&apos;s why there isn&apos;t much here 😅</p>

<div className={styles.grid}>
<div className={styles.card}>
Expand All @@ -36,27 +35,27 @@ export default function Home() {

<div className={styles.card}>
<h2>My work &rarr;</h2>
<p>Currently a work in progress... My work can be seen on my <a href="https://www.linkedin.com/in/mikkellbech/" target="_blank">LinkedIn</a>.</p>
<p>Currently a work in progress... My work can be seen on my <a rel="noopener noreferrer" href="https://www.linkedin.com/in/mikkellbech/" target="_blank">LinkedIn</a>.</p>
</div>

<div className={styles.card}>
<h2>Contact me &rarr;</h2>
<p>I am always looking for new and exciting opportunities. Feel free to contact me using one of the below;</p>
<br></br>
<p className={styles.cardLink}>
LinkedIn {'->'} <a href="https://www.linkedin.com/in/mikkellbech/" target="_blank">@mikkellbech</a>
LinkedIn {'->'} <a rel="noopener noreferrer" href="https://www.linkedin.com/in/mikkellbech/" target="_blank">@mikkellbech</a>
</p>
<p className={styles.cardLink}>
Worksome {'->'} <a href="https://use.worksome.dk/profile/2090" target="_blank">@MikkelBech</a>
Worksome {'->'} <a rel="noopener noreferrer" href="https://use.worksome.dk/profile/2090" target="_blank">@MikkelBech</a>
</p>
<p className={styles.cardLink}>
Github {'->'} <a href="https://github.com/BE-CH" target="_blank">@BE-CH</a>
Github {'->'} <a rel="noopener noreferrer" href="https://github.com/BE-CH" target="_blank">@BE-CH</a>
</p>
<p className={styles.cardLink}>
E-mail {'->'} <a href="mailto:[email protected]" target="_blank">[email protected]</a>
E-mail {'->'} <a rel="noopener noreferrer" href="mailto:[email protected]" target="_blank">[email protected]</a>
</p>
<p className={styles.cardLink}>
Phone {'->'} <a href="tel:+4521775413" target="_blank">+45 21 77 54 13</a>
Phone {'->'} <a rel="noopener noreferrer" href="tel:+4521775413" target="_blank">+45 21 77 54 13</a>
</p>
</div>
</div>
Expand All @@ -70,7 +69,7 @@ export default function Home() {
>
Powered by{' '}
<span className={styles.logo}>
<img src="/logo.png" className={styles.actualImage}/>
<img src="/logo.png" alt="Bech Solutions logo" className={styles.actualImage}/>
</span>
</a>
</footer>
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -630,8 +630,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "bechsolutions@workspace:."
dependencies:
eslint: 7.30.0
eslint-config-next: 11.0.1
eslint: ^7.30.0
eslint-config-next: ^11.0.1
next: 11.0.1
react: 17.0.2
react-dom: 17.0.2
Expand Down Expand Up @@ -1435,7 +1435,7 @@ __metadata:
languageName: node
linkType: hard

"eslint-config-next@npm:11.0.1":
"eslint-config-next@npm:^11.0.1":
version: 11.0.1
resolution: "eslint-config-next@npm:11.0.1"
dependencies:
Expand Down Expand Up @@ -1605,7 +1605,7 @@ __metadata:
languageName: node
linkType: hard

"eslint@npm:7.30.0":
"eslint@npm:^7.30.0":
version: 7.30.0
resolution: "eslint@npm:7.30.0"
dependencies:
Expand Down

0 comments on commit be89644

Please sign in to comment.