Skip to content

Commit

Permalink
Update UI for SEO
Browse files Browse the repository at this point in the history
  • Loading branch information
DraftedDev committed May 23, 2024
1 parent bb26c11 commit be5b917
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/lib/components/Nav.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts">
import { Navbar, NavBrand, NavLi, NavUl, NavHamburger } from 'flowbite-svelte';
import { Navbar, NavBrand, NavLi, NavUl, NavHamburger, GradientButton } from 'flowbite-svelte';
</script>

<Navbar class="fixed w-full border-b-4">
Expand Down
27 changes: 22 additions & 5 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts">
import Nav from '$lib/components/Nav.svelte';
import { Card } from 'flowbite-svelte';
import { Button, Card, GradientButton } from 'flowbite-svelte';
</script>

<Nav />
Expand All @@ -15,23 +15,40 @@
<div>with Maycoon!</div>
</div>

<div class="cards mt-72 flex">
<div class="mt-12 flex place-content-center">
<GradientButton class="m-10 w-60 p-1" href="./guide" outline color="purpleToBlue"
><h1 class="text-2xl">Getting Started</h1></GradientButton
>

<GradientButton
class="m-10 w-60 p-1"
href="https://www.github.com/maycoon-ui/maycoon"
target="_blank"
outline
color="purpleToBlue"><h1 class="text-2xl">GitHub</h1></GradientButton
>
</div>

<div class="cards mt-24 flex">
<Card class="mr-16 text-black">
<h5 class="mb-2 text-2xl font-bold">Beautiful</h5>
<p class="text-xl leading-tight">
Use a palette of well-designed and beautiful built-in Widgets to design your dream UI.
Utilize a large collection of fast, well-designed & beautiful built-in Widgets to design the
perfect User Interface.
</p>
</Card>
<Card class="mr-16 text-black">
<h5 class="mb-2 text-2xl font-bold">Plug'n'Play</h5>
<p class="text-xl leading-tight">
Add Maycoon to your Cargo Project and start playing around without extra dependencies.
Simply add Maycoon to your Rust Project and start playing around. No extra dependencies
needed.
</p>
</Card>
<Card class="text-black">
<h5 class="mb-2 text-2xl font-bold">Powered by Performance</h5>
<p class="text-xl leading-tight">
Maycoon utilized the GPU and parallel task execution to make your App lightning fast.
Maycoon uses the GPU for fast 2D Rendering and the CPU for parallel Task Execution and fast
App Logic.
</p>
</Card>
</div>
Expand Down

0 comments on commit be5b917

Please sign in to comment.