-
-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(landing): features section, footer
- Loading branch information
1 parent
34bb8c8
commit 1b337b4
Showing
15 changed files
with
121 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<script> | ||
import Github from '~/icons/Github.svelte' | ||
import { i18n } from '$lib/i18n' | ||
const t = $i18n.t | ||
</script> | ||
|
||
<footer class="footer footer-center mt-36 p-10 bg-base-200 text-base-content rounded"> | ||
<nav class="grid grid-flow-col gap-4"> | ||
<a class="link link-hover" href={import.meta.env.BASE_URL}>{t('home')}</a> | ||
<a class="link link-hover" href="/features">{t('features')}</a> | ||
<a class="link link-hover" href="https://github.com/thewh1teagle/vibe" target="_blank">Github</a> | ||
<a class="link link-hover" href="https://github.com/sponsors/thewh1teagle" target="_blank">{t('support-vibe')}</a> | ||
</nav> | ||
<nav> | ||
<div class="grid grid-flow-col gap-4"> | ||
<a href="https://github.com/thewh1teagle/vibe" target="_blank"> | ||
<Github width="24" height="24" /> | ||
</a> | ||
</div> | ||
</nav> | ||
<aside> | ||
<p>Vibe - {t('title')}</p> | ||
</aside> | ||
</footer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,23 @@ | ||
<script> | ||
import Logo from '~/icons/Logo.svelte' | ||
import { i18n } from '~/lib/i18n' | ||
const t = $i18n.t | ||
</script> | ||
|
||
<div class="navbar bg-base-100 lg:flex lg:max-w-[1065px] mt-3 m-auto"> | ||
<div class="flex-1"> | ||
<a href="#top" class="btn btn-ghost text-sm sm:btn-xs lg:btn-md lg:text-xl"> | ||
<a href={import.meta.env.BASE_URL} class="btn btn-ghost text-sm sm:btn-xs lg:btn-md lg:text-xl"> | ||
<Logo /> | ||
<span class="opacity-95">Vibe</span> | ||
</a> | ||
</div> | ||
<!-- links --> | ||
<div class="flex-none" dir="ltr"> | ||
<!-- todo: add links and features --> | ||
</div> | ||
<ul class="flex-none menu menu-horizontal px-1" dir="ltr"> | ||
<li> | ||
<a href="/features">{t('features')}</a> | ||
</li> | ||
<li> | ||
<a href="https://github.com/thewh1teagle/vibe" target="_blank">Github</a> | ||
</li> | ||
</ul> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
[ | ||
{ | ||
"title": "Transcribe almost every language", | ||
"description": "Vibe supports up to 100 languages!", | ||
"imageURL": "/feature-languages.png" | ||
}, | ||
{ | ||
"title": "Batch transcribe multiple files!", | ||
"description": "You can transcribe as many files as you want easily in single click.", | ||
"imageURL": "feature-batch-transcribe.png" | ||
}, | ||
{ | ||
"title": "Multiple formats", | ||
"description": "You can export transcription in your preferred format", | ||
"imageURL": "/feature-formats.png" | ||
}, | ||
{ | ||
"title": "Optimized for GPU", | ||
"description": "Vibe is optimized to run on Nvidia / AMD / Apple GPUs!", | ||
"imageURL": "/feature-gpu.png" | ||
}, | ||
{ | ||
"title": "Ultimate privacy", | ||
"description": "Fully offline transcription, no data ever leaves your device", | ||
"imageURL": "/feature-privacy.png" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<script> | ||
import Feature from './feature.svelte' | ||
import features from '~/lib/features.json' | ||
</script> | ||
|
||
<div class="max-w-[78%] lg:max-w-[600px] m-auto" dir="ltr"> | ||
<div class="text-4xl font-bold">Features</div> | ||
|
||
<div class="flex flex-col gap-32 mt-14"> | ||
{#each features as feature} | ||
<div> | ||
<h2 class="text-2xl font-bold">{feature.title}</h2> | ||
<p class="mt-2">{feature.description}</p> | ||
{#if feature.imageURL} | ||
<img src={feature.imageURL} alt={feature.title} class="mt-4 rounded-lg" /> | ||
{/if} | ||
<!-- {#if feature.videoURL} | ||
<video src={feature.videoURL} class="mt-4 rounded-lg" /> | ||
{/if} --> | ||
</div> | ||
{/each} | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<script lang="ts"> | ||
export let title: string | ||
export let description: string | ||
export let videoURL = '' | ||
export let imageURL = '' | ||
</script> | ||
|
||
<div> | ||
<div class="text-3xl font-medium">{title}</div> | ||
<div class="text-lg opacity-80 mt-6 mb-6">{description}</div> | ||
|
||
{#if imageURL} | ||
<img src={imageURL} alt="Image" class="rounded-lg" /> | ||
{/if} | ||
|
||
{#if videoURL} | ||
<video src={videoURL} controls class="rounded-lg"></video> | ||
{/if} | ||
</div> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters