Update package.json

This commit is contained in:
2020-09-17 22:04:24 -05:00
parent b25a6b34b7
commit bc4f834cae
2 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
{ {
"name": "gatsby-starter-hello-world", "name": "benramey.com",
"private": true, "private": true,
"description": "A simplified bare-bones starter for Gatsby", "description": "My blog: benramey.com",
"version": "0.1.0", "version": "0.1.0",
"license": "0BSD", "license": "0BSD",
"scripts": { "scripts": {

View File

@@ -1,5 +1,5 @@
import React from "react" import React from "react"
export default function Home() { export default function Home() {
return <div>Hello world!</div> return <div>Hello world, Ben!</div>
} }