diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 5fd9a71..46ad001 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -1,251 +1,8 @@ - - - VERT.sh — Free, fast, and awesome file convert - - - - - - - - - - -{#snippet sellingPoint(text: string)} -
  • -
    - -
    - {text} -
  • -{/snippet} - -
    - c.supportedFormats)), - ]} - /> -
    - -
    -

    - Free, fast, and awesome file converting BETA -

    -
    -
    - - {#each ["Very fast, all processing done on device", "No file or size limit", "No ads, and open source", "Beautiful and straightforward UI"] as text, i} -
    - {@render sellingPoint(text)} -
    - {/each} -
    -
    -
    - - diff --git a/src/routes/about/+page.svelte b/src/routes/about/+page.svelte deleted file mode 100644 index fb8b32f..0000000 --- a/src/routes/about/+page.svelte +++ /dev/null @@ -1,159 +0,0 @@ - - - - About VERT - - - - - -
    -

    - ⁉️ about VERT -

    -

    - You know what sucks? File converters! They're usually riddled with ads, - and take an ungodly amount of time to complete. So we made a better one! -

    -

    - VERT is a file converter that's open source, completely ad free, and - much much faster than you're used to. All the converting is done on your - device, which makes it both private and very speedy. And it of course - has a beautiful UI! ✨ -

    - -

    - 🖼️ supported formats -

    -

    - As of right now, VERT supports image and audio conversion of most - popular formats. We'll add support for more formats in the future! -

    - -

    - 🔗 resources -

    - - -

    - 🎨 credits -

    -
    - {#each credits as credit, i} - - {/each} -
    - -

    - (obviously inspired by cobalt.tools) -

    -
    - - diff --git a/src/routes/convert/+page.svelte b/src/routes/convert/+page.svelte deleted file mode 100644 index 0ce24c2..0000000 --- a/src/routes/convert/+page.svelte +++ /dev/null @@ -1,568 +0,0 @@ - - - - Your Conversions - - - - - -
    - {#if files.files.length === 0} -

    - No files uploaded. Head to the Upload tab to begin! -

    - {:else} -
    -
    -

    Options

    -
    -
    -

    Set all target formats

    -
    - {#if !multipleConverters && noMultConverter} -
    - { - // files.conversionTypes = Array.from( - // { length: files.files.length }, - // () => o, - // ); - - files.files.forEach((file) => { - file.result = null; - file.to = o; - }); - }} - /> -
    - {:else} -
    - The listed files require different - converters, so you can't set them in bulk. -
    - {/if} -
    -
    -
    - -
    - - - -
    -
    -
    - {#each reversedFiles as file, i (file.id)} - {@const converter = (() => { - return converters.find((c) => - c.supportedFormats.includes( - file.from.toLowerCase(), - ), - ); - })()} -
    -
    -
    -
    -
    -
    - {#if processings[files.files.length - i - 1]} -
    - -
    - {:else} -

    - {file.file.name} -

    - {/if} -
    - -
    -
    -
    -
    -
    -
    - {#if converter && converter.supportedFormats.includes(file.from.toLowerCase())} - from - {file.from} - to -
    - { - file.result = - null; - }} - /> -
    - {:else} - {file.from} - - - is not supported! - - {/if} -
    -
    - -
    -
    -
    - {#if converter && converter.supportedFormats.includes(file.from.toLowerCase())} - -
    - {#if file.blobUrl} -
    -
    - -
    - {:else} -
    - -
    - {/if} -
    - {/if} -
    -
    - {/each} -
    -
    - {/if} -
    - -