Skip to content

Commit

Permalink
[NEXTJS] Next JS integration with tailwindcss,
Browse files Browse the repository at this point in the history
Added framer motion anitmations
  • Loading branch information
ruchaidandev committed Jan 22, 2022
1 parent d4a39c6 commit ec86437
Show file tree
Hide file tree
Showing 38 changed files with 6,020 additions and 36,542 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "next/core-web-vitals"
}
17 changes: 14 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,27 @@
# 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
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
# vercel
.vercel
20 changes: 20 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
language: node_js
node_js:
- 17
cache:
directories:
- node_modules
script:
- npm run build
- npm run export
- touch out/.nojekyll # Creates a file telling Github not to build the project using Jekyll
deploy:
provider: pages # Informs Travis this is a deployment to GitHub Pages
skip_cleanup: true # Prevents Travis from resetting the working directory made during the build
github_token: $github_token # GitHub access token to use when pushing to the gh-pages branch
local_dir: out # Directory to push to the gh-pages branch
on:
# Only deploy when the build is on master or main branch - two common default branch names
# If you're using a different branch name, add it here
all_branches: true
condition: $TRAVIS_BRANCH =~ ^(master|main)$
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ The code of conduct is derived from the Laravel code of conduct. Any violations

If you discover a security vulnerability within the project, please send an e-mail to Aidan Perera via [[email protected]](mailto:[email protected]). All security vulnerabilities will be promptly addressed.


## Built With

* [ReactJS] (https://vuejs.org) - JS Framework Used
* [Next.js] (https://nextjs.org) - JS Framework Used
* [Tailwind] (https://tailwindcss.com/) - CSS/UI Library Used
* [Framer] (https://www.framer.com/) - Animation Library Used


1 change: 0 additions & 1 deletion index.html

This file was deleted.

4 changes: 4 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module.exports = {
reactStrictMode: true,
assetPrefix: '/ruchaidandev',
}
Loading

0 comments on commit ec86437

Please sign in to comment.