Skip to content

Commit

Permalink
init code
Browse files Browse the repository at this point in the history
  • Loading branch information
jim-king-2000 committed Sep 16, 2021
0 parents commit 6637326
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.next
node_modules
package-lock.json
29 changes: 29 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"name": "gfxsofficialsite",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jim-king-2000/GFXSOfficialSite.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jim-king-2000/GFXSOfficialSite/issues"
},
"homepage": "https://github.com/jim-king-2000/GFXSOfficialSite#readme",
"dependencies": {
"grommet": "^2.17.5",
"next": "^11.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}
5 changes: 5 additions & 0 deletions pages/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
function HomePage() {
return <div>Welcome to Next.js!</div>
}

export default HomePage

0 comments on commit 6637326

Please sign in to comment.