Skip to content
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
115 changes: 32 additions & 83 deletions apps/web/frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
color: var(--dark-color);
font-size: 48px;
font-weight: 900;
color: whitesmoke;
}

.hero-section h4 {
Expand All @@ -21,6 +22,7 @@
font-weight: 300;
text-align: center;
padding: 0px 14rem;
color: whitesmoke;
}

.hero-section button {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
import React from 'react'
import { Link } from 'react-router-dom';
import './HeroSection.css'
const HeroSection = () => {
const HeroSection = () =>
{
return (
<section className = "hero-section">
<section className="hero-section">
<div data-aos="fade-up" className='container flex'>
<h1 style = {{padding:'0px'}}>Your Privacy Friendly, Open Source.
Alternative to EverNote.</h1>
<h4>
Capture your notes, files, and life’s work all in one secure place.
</h4>
<Link to="/Signup"><button>Get Started For Free</button></Link>
<h1 style={{ padding: '0px' }}>Your Privacy Friendly, Open Source.
Alternative to EverNote.</h1>
<h4>
Capture your notes, files, and life’s work all in one secure place.
</h4>
<Link to="/Signup"><button>Get Started For Free</button></Link>
</div>
<div className='image flex'>
<img style = {{width:'70%'}} src = "assets/bgimage.png" alt = "cover-page"/>
<img src = "assets/Vector.png" alt = "design"/>
<img style={{ width: '70%' }} src="assets/bgimage.png" alt="cover-page" />
<img src="assets/Vector.png" alt="design" />
</div>
</section>
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
.newsletter__form__email__submit_btn {
border-radius: 999rem;
width: auto;
margin: 0;
margin: auto;
}

.newsletter__form__email_copy {
Expand Down