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
4 changes: 4 additions & 0 deletions src/components/global/footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@
target="_blank"
>
<div class="form-group flex justify-center items-center">
<label for="subscribe-form-email" class="sr-only">
Your e-mail
</label>
<input
id="subscribe-form-email"
type="email"
name="email"
class="form-control"
Expand Down
4 changes: 3 additions & 1 deletion src/components/landing/posts.astro
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ posts.sort(
}
/>
</div>
<h4>{post.data.title}</h4>
<h3 class="text-lg leading-normal mb-2 font-semibold">
{post.data.title}
</h3>
<p>{post.data.description}</p>
</div>
</a>
Expand Down
20 changes: 14 additions & 6 deletions src/components/landing/why.astro
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@
<img src="/assets/img/truly-independent.svg" alt="star symbol" />
</div>
<div class="why__slide-tf">
<h4>Truly independent</h4>
<p>
<h3 class="text-lg text-white leading-normal font-semibold mb-3">
Truly independent
</h3>
<p class="text-white">
No code from other browsers. We're building a new engine, based on
web standards.
</p>
Expand All @@ -29,8 +31,12 @@
<img src="/assets/img/single-focus.svg" alt="target symbol" />
</div>
<div class="why__slide-tf">
<h4>Singular focus</h4>
<p>We are focused on one thing: the web browser.</p>
<h3 class="text-lg text-white leading-normal font-semibold mb-3">
Singular focus
</h3>
<p class="text-white">
We are focused on one thing: the web browser.
</p>
</div>
</div>
</div>
Expand All @@ -44,8 +50,10 @@
/>
</div>
<div class="why__slide-tf">
<h4>No monetization</h4>
<p>
<h3 class="text-lg text-white leading-normal font-semibold mb-3">
No monetization
</h3>
<p class="text-white">
No "default search deals", crypto tokens, or other forms of user
monetization, ever.
</p>
Expand Down
8 changes: 5 additions & 3 deletions src/layouts/base.astro
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ const { title, description, author, image } = Astro.props;
/>
</head>
<body>
<Navigation />
<slot />
<Footer />
<main>
<Navigation />
<slot />
<Footer />
</main>
</body>
</html>
16 changes: 0 additions & 16 deletions src/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -280,15 +280,6 @@ header a, footer a {
background-color: #2a1373;
}

.why__slide h4 {
margin-bottom: 14px;
color: #fff;
}

.why__slide p {
color: #fff;
}

.news {
position: relative;
margin: 30px 20px 100px 20px;
Expand Down Expand Up @@ -386,13 +377,6 @@ header a, footer a {
padding: 5px 13px;
}

.news__box h4 {
font-size: 20px;
font-weight: 600;
line-height: 150%;
margin-bottom: 10px;
}

.news__box p {
color: #444345;
}
Expand Down