Skip to content
This repository has been archived by the owner on Apr 2, 2024. It is now read-only.

Page/plan pricing #1

Open
wants to merge 17 commits into
base: main
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,6 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts


.turbo
File renamed without changes.
File renamed without changes.
36 changes: 36 additions & 0 deletions apps/deals-page/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js
.yarn/install-state.gz

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# local env files
.env*.local

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
File renamed without changes.
File renamed without changes.
3 changes: 2 additions & 1 deletion package.json → apps/deals-page/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "aftershoot-static-site",
"name": "aftershoot-deals-page",
"version": "0.1.0",
"private": true,
"scripts": {
Expand All @@ -14,6 +14,7 @@
"@stripe/stripe-js": "^2.4.0",
"axios": "^1.6.7",
"clsx": "^2.1.0",
"framer-motion": "^11.0.3",
"gsap": "^3.12.4",
"next": "14.0.4",
"react": "^18",
Expand Down
Loading