Skip to content

Commit

Permalink
Update CHANGELOG, remove unneeded links
Browse files Browse the repository at this point in the history
  • Loading branch information
pasqualevitiello committed Feb 16, 2023
1 parent 3f6e4b2 commit 53ab45b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 135 deletions.
81 changes: 3 additions & 78 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,84 +1,9 @@
# CHANGELOG.md

## [1.8.0] - 2022-08-30
## [2.0.0] - 2023-02-16

- Fix features zig zag issue
Replace Cruip CSS with Tailwind CSS

## [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
## [1.0.0] - 2020-04-07

First release
57 changes: 0 additions & 57 deletions src/partials/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,37 +48,6 @@ function Header() {
{/* Desktop navigation */}
<nav className="hidden md:flex md:grow">

{/* Desktop menu links */}
<ul className="flex grow justify-end flex-wrap items-center">
<li>
<Link to="/features" className="text-gray-300 hover:text-gray-200 px-4 py-2 flex items-center transition duration-150 ease-in-out">
Features
</Link>
</li>
<li>
<Link to="/pricing" className="text-gray-300 hover:text-gray-200 px-4 py-2 flex items-center transition duration-150 ease-in-out">Pricing</Link>
</li>
<li>
<Link to="/blog" className="text-gray-300 hover:text-gray-200 px-4 py-2 flex items-center transition duration-150 ease-in-out">Blog</Link>
</li>
<li>
<Link to="/about" className="text-gray-300 hover:text-gray-200 px-4 py-2 flex items-center transition duration-150 ease-in-out">About us</Link>
</li>
{/* 1st level: hover */}
<Dropdown title="Support">
{/* 2nd level: hover */}
<li>
<Link to="/contact" className="font-medium text-sm text-gray-400 hover:text-purple-600 flex py-2 px-4 leading-tight">Contact us</Link>
</li>
<li>
<Link to="/help" className="font-medium text-sm text-gray-400 hover:text-purple-600 flex py-2 px-4 leading-tight">Help center</Link>
</li>
<li>
<Link to="/404" className="font-medium text-sm text-gray-400 hover:text-purple-600 flex py-2 px-4 leading-tight">404</Link>
</li>
</Dropdown>
</ul>

{/* Desktop sign in links */}
<ul className="flex grow justify-end flex-wrap items-center">
<li>
Expand Down Expand Up @@ -107,32 +76,6 @@ function Header() {
{/*Mobile navigation */}
<nav id="mobile-nav" ref={mobileNav} className="absolute top-full z-20 left-0 w-full px-4 sm:px-6 overflow-hidden transition-all duration-300 ease-in-out" style={mobileNavOpen ? { maxHeight: mobileNav.current.scrollHeight, opacity: 1 } : { maxHeight: 0, opacity: .8 } }>
<ul className="bg-gray-800 px-4 py-2">
<li>
<Link to="/features" className="flex text-gray-300 hover:text-gray-200 py-2">Features</Link>
</li>
<li>
<Link to="/pricing" className="flex text-gray-300 hover:text-gray-200 py-2">Pricing</Link>
</li>
<li>
<Link to="/blog" className="flex text-gray-300 hover:text-gray-200 py-2">Blog</Link>
</li>
<li>
<Link to="/about" className="flex text-gray-300 hover:text-gray-200 py-2">About us</Link>
</li>
<li className="py-2 my-2 border-t border-b border-gray-700">
<span className="flex text-gray-300 py-2">Support</span>
<ul className="pl-4">
<li>
<Link to="/contact" className="text-sm flex font-medium text-gray-400 hover:text-gray-200 py-2">Contact us</Link>
</li>
<li>
<Link to="/help" className="text-sm flex font-medium text-gray-400 hover:text-gray-200 py-2">Help center</Link>
</li>
<li>
<Link to="/404" className="text-sm flex font-medium text-gray-400 hover:text-gray-200 py-2">404</Link>
</li>
</ul>
</li>
<li>
<Link to="/signin" className="flex font-medium w-full text-purple-600 hover:text-gray-200 py-2 justify-center">Sign in</Link>
</li>
Expand Down

0 comments on commit 53ab45b

Please sign in to comment.