-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[NEXTJS] Next JS integration with tailwindcss,
Added framer motion anitmations
- Loading branch information
1 parent
d4a39c6
commit ec86437
Showing
38 changed files
with
6,020 additions
and
36,542 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"extends": "next/core-web-vitals" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
module.exports = { | ||
reactStrictMode: true, | ||
assetPrefix: '/ruchaidandev', | ||
} |
Oops, something went wrong.