-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v2 - Replace Cruip CSS with Tailwind CSS
- Loading branch information
1 parent
e50c99a
commit e38d6a2
Showing
163 changed files
with
5,109 additions
and
23,205 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 |
---|---|---|
@@ -1,23 +1,5 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
node_modules | ||
.DS_Store | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
dist | ||
dist-ssr | ||
*.local |
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,84 @@ | ||
# CHANGELOG.md | ||
|
||
## [1.8.0] - 2022-08-30 | ||
|
||
- Fix features zig zag issue | ||
|
||
## [1.7.0] - 2022-07-15 | ||
|
||
- Replace Sass with CSS files | ||
|
||
## [1.6.0] - 2022-07-11 | ||
|
||
- Update dependencies | ||
- Update React to v18 | ||
|
||
## [1.5.0] - 2022-01-25 | ||
|
||
- Replace CRA (Create React App) with Vite | ||
- Remove Craco | ||
- Update dependencies | ||
|
||
## [1.4.0] - 2021-12-13 | ||
|
||
- Update Tailwind 3 | ||
- Several improvements | ||
|
||
## [1.3.0] - 2021-10-20 | ||
|
||
Update dependencies and remove some | ||
|
||
## [1.2.3] - 2021-09-09 | ||
|
||
Fix broken image and minor issue with Tabs component | ||
|
||
## [1.2.2] - 2021-08-19 | ||
|
||
Fix mobile menu issue | ||
|
||
## [1.2.1] - 2021-06-11 | ||
|
||
Improve page illustration | ||
|
||
## [1.2.0] - 2021-05-04 | ||
|
||
Update dependencies and use Tailwind 2 | ||
|
||
## [1.1.0] - 2020-10-14 | ||
|
||
- Updated cruip-js-toolkit dependency | ||
@/package.json | ||
|
||
- Fixed typos | ||
@/src/pages/SignIn.js | ||
@/src/pages/SignUp.js | ||
|
||
- MC: Changed reveal delay | ||
@/src/partials/HeroHome.js | ||
|
||
- MC: Changed CSS animation name | ||
@/src/css/additional-styles/theme.scss | ||
|
||
- Changed the way of listening a route change | ||
@/App.js | ||
|
||
- Changed wrong function name | ||
@/src/pages/Features.js | ||
|
||
- Typo | ||
@/src/pages/ResetPassword.js | ||
|
||
- Missing indentation | ||
@/src/partials/FeaturesZigZag.js | ||
@/src/partials/News.js | ||
|
||
- Removed unneeded onClick | ||
@/src/partials/Header.js | ||
|
||
- Fix carousel height adjustment | ||
@/src/partials/Tabs.js | ||
@/src/partials/TestimonialsCarousel.js | ||
|
||
## [1.0.0] - 2020-08-24 | ||
|
||
First release |
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,14 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/src/favicon.svg" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Vite App</title> | ||
</head> | ||
<body class="font-inter antialiased bg-gray-900 text-gray-200 tracking-tight"> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
<div id="root"></div> | ||
<script type="module" src="/src/main.jsx"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.