Skip to content

Commit 27112f1

Browse files
refactor: update Home design added gradient to background & added nitrovim text logo
1 parent 73f8e0b commit 27112f1

File tree

1 file changed

+23
-24
lines changed

1 file changed

+23
-24
lines changed

src/components/sections/Home.astro

Lines changed: 23 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,26 @@
1-
<section class="text-center max-w-3xl mx-auto py-24 px-6">
2-
<h1 class="text-4xl md:text-6xl font-extrabold leading-tight">
3-
The NitroVim Experience
4-
</h1>
5-
<p class="text-xl text-gray-400 mt-6">
6-
Anim aute id magna aliqua ad ad non deserunt sunt. Qui irure qui lorem cupidatat commodo.
7-
Elit sunt amet fugiat veniam occaecat.
8-
</p>
1+
<section class="bg-linear-135 from-[#0051b3] to-[#003580]">
2+
<section class="text-center max-w-8xl mx-auto py-24 px-6">
3+
<img src="/nitrovim-text.svg" alt="">
4+
<p class="text-xl text-white mt-6">
5+
NitroVim is a modern, fast, and fully customizable Neovim distribution designed to boost developer productivity out-of-the-box. It comes preconfigured with LSP, autocompletion, snippets, file explorer, fuzzy finder, Git integration, themes, transparency, and more.
6+
</p>
97

10-
<div class="mt-8 flex justify-center gap-4">
11-
<a href="#"
12-
class="bg-black text-white px-6 py-3 rounded-lg font-medium hover:bg-indigo-600">
13-
Get started
14-
</a>
15-
<a href="#" class="text-black px-6 py-3 font-medium hover:underline">Learn more →</a>
16-
</div>
17-
</section>
8+
<div class="mt-8 flex justify-center gap-4">
9+
<a href="#"
10+
class="bg-white text-[#0051b3] px-6 py-3 rounded-lg font-medium">
11+
Get started
12+
</a>
13+
<a href="#" class="text-white px-6 py-3 font-medium hover:underline">Learn more →</a>
14+
</div>
15+
</section>
1816

19-
<section class="flex justify-center items-center px-6 pb-24">
20-
<div class="border border-gray-700 rounded-2xl bg-gray-900 shadow-2xl max-w-8xl w-full overflow-hidden">
21-
<img
22-
src="/app.png"
23-
alt="App Screenshot"
24-
class="w-full h-auto object-cover"
25-
/>
26-
</div>
17+
<section class="flex justify-center items-center px-6 pb-24">
18+
<div class="rounded-3xl bg-gray-900 shadow-2xl max-w-8xl w-full overflow-hidden">
19+
<img
20+
src="/app.png"
21+
alt="App Screenshot"
22+
class="w-full h-auto object-cover"
23+
/>
24+
</div>
25+
</section>
2726
</section>

0 commit comments

Comments
 (0)