Site icon added
This commit is contained in:
parent
e210ada363
commit
df568a572b
4 changed files with 62 additions and 54 deletions
|
@ -2,7 +2,7 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
<link rel="icon" href="favicon.svg" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
%sveltekit.head%
|
%sveltekit.head%
|
||||||
</head>
|
</head>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<script lang="ts">
|
<script lang="ts" xmlns:svelte="http://www.w3.org/1999/html">
|
||||||
import Download from './icons/Download.svelte';
|
import Download from './icons/Download.svelte';
|
||||||
import Terminal from './icons/Terminal.svelte';
|
import Terminal from './icons/Terminal.svelte';
|
||||||
import Check from './icons/Check.svelte';
|
import Check from './icons/Check.svelte';
|
||||||
|
@ -21,9 +21,13 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<svelte:head>
|
||||||
|
<title>TileOS</title>
|
||||||
|
</svelte:head>
|
||||||
|
|
||||||
<div class="flex justify-center items-center flex-col text-center bg-[#24273a]">
|
<div class="flex justify-center items-center flex-col text-center bg-[#24273a]">
|
||||||
<img alt="" height="216px" src="tileos.svg" width="216px" />
|
<img alt="" height="216px" src="tileos.svg" width="216px" />
|
||||||
<h1 class="text-3xl font-bold">Tile OS</h1>
|
<h1 class="text-3xl font-bold">TileOS</h1>
|
||||||
<p>Debian-based distribution with tiling window managers.</p>
|
<p>Debian-based distribution with tiling window managers.</p>
|
||||||
<div class="flex flex-row flex-wrap m-7 justify-center">
|
<div class="flex flex-row flex-wrap m-7 justify-center">
|
||||||
<div class="relative inline-block text-left">
|
<div class="relative inline-block text-left">
|
||||||
|
|
34
static/favicon.svg
Normal file
34
static/favicon.svg
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
width="150mm"
|
||||||
|
height="150mm"
|
||||||
|
viewBox="80.32 75.14 125.11 135.47"
|
||||||
|
version="1.1"
|
||||||
|
id="svg1"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<defs
|
||||||
|
id="defs1" />
|
||||||
|
<g
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(51.862587)">
|
||||||
|
<g
|
||||||
|
id="g47"
|
||||||
|
transform="matrix(1.2904649,0,0,1.2904649,182.29828,263.50697)">
|
||||||
|
<path
|
||||||
|
d="m -74.175793,-145.04607 -37.629647,21.72532 a 2.2913627,2.2913627 90.000242 0 0 -2e-5,3.96875 l 37.629683,21.725759 a 6.8739581,6.8739581 179.99986 0 0 6.874048,-1.7e-5 l 37.629186,-21.725722 a 2.2913894,2.2913894 89.999758 0 0 -1.6e-5,-3.96879 l -37.629154,-21.72528 a 6.8740921,6.8740921 1.4438715e-4 0 0 -6.87408,-2e-5 z"
|
||||||
|
style="fill:#6993e9;fill-opacity:1;stroke:none;stroke-width:1.05833"
|
||||||
|
id="path39" />
|
||||||
|
<path
|
||||||
|
d="m -119.21176,-112.42944 v 43.451098 a 6.8741068,6.8741068 60.000109 0 0 3.43703,5.953138 l 37.630715,21.726294 a 2.2913488,2.2913488 150.00011 0 0 3.437031,-1.984362 v -43.452127 a 6.8739692,6.8739692 59.999612 0 0 -3.437065,-5.953078 l -37.630641,-21.725383 a 2.2913947,2.2913947 149.99961 0 0 -3.43707,1.98442 z"
|
||||||
|
style="fill:#8f96ee;fill-opacity:1;stroke-width:1.05833"
|
||||||
|
id="path37" />
|
||||||
|
<path
|
||||||
|
d="m -25.702789,-114.41386 -37.630661,21.725383 a 6.873968,6.873968 120.00039 0 0 -3.437065,5.953078 v 43.452127 a 2.2913492,2.2913492 29.999895 0 0 3.437031,1.984362 l 37.630729,-21.726294 a 6.8741057,6.8741057 119.9999 0 0 3.437031,-5.953138 v -43.451098 a 2.2913951,2.2913951 30.000392 0 0 -3.437065,-1.98442 z"
|
||||||
|
style="fill:#73b4d1;fill-opacity:1;stroke-width:1.05833"
|
||||||
|
id="path38" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
|
@ -2,63 +2,33 @@
|
||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
<svg
|
<svg
|
||||||
width="150mm"
|
width="150mm"
|
||||||
height="150mm"
|
height="150mm"
|
||||||
viewBox="0 0 285.75 285.75"
|
viewBox="0 0 285.75 285.75"
|
||||||
version="1.1"
|
version="1.1"
|
||||||
id="svg1"
|
id="svg1"
|
||||||
sodipodi:docname="TileOS Macchiato No Text.svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview14"
|
|
||||||
bordercolor="#999999"
|
|
||||||
borderopacity="1"
|
|
||||||
inkscape:showpageshadow="0"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
inkscape:document-units="mm"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="0.76759259"
|
|
||||||
inkscape:cx="447.50302"
|
|
||||||
inkscape:cy="541.95416"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1009"
|
|
||||||
inkscape:window-x="1912"
|
|
||||||
inkscape:window-y="-8"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg1" />
|
|
||||||
<defs
|
<defs
|
||||||
id="defs1" />
|
id="defs1" />
|
||||||
<g
|
<g
|
||||||
id="layer1"
|
id="layer1"
|
||||||
transform="translate(51.862587)">
|
transform="translate(51.862587)">
|
||||||
<rect
|
|
||||||
style="fill:#ffffff;fill-opacity:0;stroke:none;stroke-width:4.26605;stroke-dasharray:none"
|
|
||||||
id="rect47"
|
|
||||||
width="14"
|
|
||||||
height="285.75"
|
|
||||||
x="-51.862587"
|
|
||||||
y="0" />
|
|
||||||
<g
|
<g
|
||||||
id="g47"
|
id="g47"
|
||||||
transform="matrix(1.2904649,0,0,1.2904649,182.29828,263.50697)">
|
transform="matrix(1.2904649,0,0,1.2904649,182.29828,263.50697)">
|
||||||
<path
|
<path
|
||||||
d="m -74.175793,-145.04607 -37.629647,21.72532 a 2.2913627,2.2913627 90.000242 0 0 -2e-5,3.96875 l 37.629683,21.725759 a 6.8739581,6.8739581 179.99986 0 0 6.874048,-1.7e-5 l 37.629186,-21.725722 a 2.2913894,2.2913894 89.999758 0 0 -1.6e-5,-3.96879 l -37.629154,-21.72528 a 6.8740921,6.8740921 1.4438715e-4 0 0 -6.87408,-2e-5 z"
|
d="m -74.175793,-145.04607 -37.629647,21.72532 a 2.2913627,2.2913627 90.000242 0 0 -2e-5,3.96875 l 37.629683,21.725759 a 6.8739581,6.8739581 179.99986 0 0 6.874048,-1.7e-5 l 37.629186,-21.725722 a 2.2913894,2.2913894 89.999758 0 0 -1.6e-5,-3.96879 l -37.629154,-21.72528 a 6.8740921,6.8740921 1.4438715e-4 0 0 -6.87408,-2e-5 z"
|
||||||
style="fill:#6993e9;fill-opacity:1;stroke:none;stroke-width:1.05833"
|
style="fill:#6993e9;fill-opacity:1;stroke:none;stroke-width:1.05833"
|
||||||
id="path39" />
|
id="path39" />
|
||||||
<path
|
<path
|
||||||
d="m -119.21176,-112.42944 v 43.451098 a 6.8741068,6.8741068 60.000109 0 0 3.43703,5.953138 l 37.630715,21.726294 a 2.2913488,2.2913488 150.00011 0 0 3.437031,-1.984362 v -43.452127 a 6.8739692,6.8739692 59.999612 0 0 -3.437065,-5.953078 l -37.630641,-21.725383 a 2.2913947,2.2913947 149.99961 0 0 -3.43707,1.98442 z"
|
d="m -119.21176,-112.42944 v 43.451098 a 6.8741068,6.8741068 60.000109 0 0 3.43703,5.953138 l 37.630715,21.726294 a 2.2913488,2.2913488 150.00011 0 0 3.437031,-1.984362 v -43.452127 a 6.8739692,6.8739692 59.999612 0 0 -3.437065,-5.953078 l -37.630641,-21.725383 a 2.2913947,2.2913947 149.99961 0 0 -3.43707,1.98442 z"
|
||||||
style="fill:#8f96ee;fill-opacity:1;stroke-width:1.05833"
|
style="fill:#8f96ee;fill-opacity:1;stroke-width:1.05833"
|
||||||
id="path37" />
|
id="path37" />
|
||||||
<path
|
<path
|
||||||
d="m -25.702789,-114.41386 -37.630661,21.725383 a 6.873968,6.873968 120.00039 0 0 -3.437065,5.953078 v 43.452127 a 2.2913492,2.2913492 29.999895 0 0 3.437031,1.984362 l 37.630729,-21.726294 a 6.8741057,6.8741057 119.9999 0 0 3.437031,-5.953138 v -43.451098 a 2.2913951,2.2913951 30.000392 0 0 -3.437065,-1.98442 z"
|
d="m -25.702789,-114.41386 -37.630661,21.725383 a 6.873968,6.873968 120.00039 0 0 -3.437065,5.953078 v 43.452127 a 2.2913492,2.2913492 29.999895 0 0 3.437031,1.984362 l 37.630729,-21.726294 a 6.8741057,6.8741057 119.9999 0 0 3.437031,-5.953138 v -43.451098 a 2.2913951,2.2913951 30.000392 0 0 -3.437065,-1.98442 z"
|
||||||
style="fill:#73b4d1;fill-opacity:1;stroke-width:1.05833"
|
style="fill:#73b4d1;fill-opacity:1;stroke-width:1.05833"
|
||||||
id="path38" />
|
id="path38" />
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 1.9 KiB |
Loading…
Add table
Reference in a new issue