Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v4.1.0 #70

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion components/footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,9 @@ export default withPure(() => (
<Subscribe />
<ul className="notices">
<li>
{'© 2019 • CameraKit. All Rights Reserved by Alterac, Inc.'}
{'© 2019 • CameraKit. All Rights Reserved by WonderKiln, Inc.'}
<br></br>
<a href="https://www.wonderkiln.com/">Need help with your next project? Reach out via WonderKiln.com</a>
</li>
</ul>
</div>
Expand Down
8 changes: 8 additions & 0 deletions now.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"version": 2,
"name": "camerakit-website",
"alias": "camerakit.io",
"builds": [
{ "src": "package.json", "use": "@now/static-build" }
]
}
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "camerakit-website",
"version": "4.0.0",
"version": "4.1.0",
"description": "Primary website for CameraKit",
"main": "index.js",
"scripts": {
"build": "next build",
"start": "NODE_ENV=production node server.js",
"dev": "node server.js",
"heroku-postbuild": "next build"
"now-build": "next build && next export -o dist"
},
"author": "Alterac, Inc.",
"author": "WonderKiln, Inc.",
"license": "MIT",
"dependencies": {
"@zeit/next-sass": "^1.0.1",
Expand Down Expand Up @@ -78,4 +78,4 @@
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1"
}
}
}
2 changes: 0 additions & 2 deletions pages/contact.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import SocialMeta from '../components/social-meta';
import { MediaQueryConsumer } from '../components/media-query';
import Header from '../components/header';
import Navbar from '../components/navbar';
import ContactForm from '../components/contact/contact-form';
import Footer from '../components/footer';

export default () => (
Expand All @@ -29,7 +28,6 @@ export default () => (
</Header>
)}
</MediaQueryConsumer>
<ContactForm />
<Footer />
</Page>
);
Loading