coyotte508 HF staff commited on
Commit
1d7522f
1 Parent(s): 320c9b0

🍱 Add assets

Browse files
.gitattributes CHANGED
@@ -32,3 +32,7 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
35
+ *.jpg filter=lfs diff=lfs merge=lfs -text
36
+ *.JPG filter=lfs diff=lfs merge=lfs -text
37
+ *.otf filter=lfs diff=lfs merge=lfs -text
38
+ *.ttf filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -7,3 +7,9 @@ Website for upholstery, using pnpm & SvelteKit.
7
  ```
8
  pnpm install
9
  ```
 
 
 
 
 
 
 
7
  ```
8
  pnpm install
9
  ```
10
+
11
+ ## Run
12
+
13
+ ```
14
+ pnpm dev
15
+ ```
src/routes/+layout.svelte ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ title
2
+
3
+ <slot></slot>
static/Ailerons-Typeface.otf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bafccf7fb57531a8432212508437a4a6e87df7e791250a37bd715a2018b29924
3
+ size 9680
static/GothamBold.ttf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:50792d8e48ef25fb34eafc77277490c729745105f27fcc009fb072ab6a089ceb
3
+ size 45744
static/GothamBook.ttf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:742359d475131a75ff057224151c7b384ef0b89556212709a5e34a9409983876
3
+ size 56676
static/RIOTSQUA.ttf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd9694b0f280c9cf87a9e9ce794162befa98576c6d3230d359e077deffe8f9e0
3
+ size 45060
static/Raleway-Italic-VariableFont_wght.ttf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aeecf659b5a37f0d502216065c9a53adb5283919e4a83b8ba7d82abf1d86e1a8
3
+ size 309832
static/Raleway-VariableFont_wght.ttf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:de7f77510452a40317f82423516ef27ac1a3f917b1ab95297e9e95d789f89960
3
+ size 309720
static/favicon copy.png ADDED
static/logo-no-chair.svg ADDED
static/logo.png ADDED
static/logo.svg ADDED
static/nprogress.css ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Make clicks pass-through */
2
+ #nprogress {
3
+ pointer-events: none;
4
+ }
5
+
6
+ #nprogress .bar {
7
+ background: #29d;
8
+
9
+ position: fixed;
10
+ z-index: 1031;
11
+ top: 0;
12
+ left: 0;
13
+
14
+ width: 100%;
15
+ height: 2px;
16
+ }
17
+
18
+ /* Fancy blur effect */
19
+ #nprogress .peg {
20
+ display: block;
21
+ position: absolute;
22
+ right: 0px;
23
+ width: 100px;
24
+ height: 100%;
25
+ box-shadow: 0 0 10px #29d, 0 0 5px #29d;
26
+ opacity: 1;
27
+
28
+ -webkit-transform: rotate(3deg) translate(0px, -4px);
29
+ -ms-transform: rotate(3deg) translate(0px, -4px);
30
+ transform: rotate(3deg) translate(0px, -4px);
31
+ }
32
+
33
+ /* Remove these to get rid of the spinner */
34
+ #nprogress .spinner {
35
+ display: block;
36
+ position: fixed;
37
+ z-index: 1031;
38
+ top: 15px;
39
+ right: 15px;
40
+ }
41
+
42
+ #nprogress .spinner-icon {
43
+ width: 18px;
44
+ height: 18px;
45
+ box-sizing: border-box;
46
+
47
+ border: solid 2px transparent;
48
+ border-top-color: #29d;
49
+ border-left-color: #29d;
50
+ border-radius: 50%;
51
+
52
+ -webkit-animation: nprogress-spinner 400ms linear infinite;
53
+ animation: nprogress-spinner 400ms linear infinite;
54
+ }
55
+
56
+ .nprogress-custom-parent {
57
+ overflow: hidden;
58
+ position: relative;
59
+ }
60
+
61
+ .nprogress-custom-parent #nprogress .spinner,
62
+ .nprogress-custom-parent #nprogress .bar {
63
+ position: absolute;
64
+ }
65
+
66
+ @-webkit-keyframes nprogress-spinner {
67
+ 0% {
68
+ -webkit-transform: rotate(0deg);
69
+ }
70
+ 100% {
71
+ -webkit-transform: rotate(360deg);
72
+ }
73
+ }
74
+ @keyframes nprogress-spinner {
75
+ 0% {
76
+ transform: rotate(0deg);
77
+ }
78
+ 100% {
79
+ transform: rotate(360deg);
80
+ }
81
+ }
static/photos/P1010374 (2).JPG ADDED

Git LFS Details

  • SHA256: e99035daf84621a239776bfc4ddc3a1d2db6688f8061b2744fd219183fcb080d
  • Pointer size: 132 Bytes
  • Size of remote file: 3.12 MB
static/photos/P1010376 (3).JPG ADDED

Git LFS Details

  • SHA256: 83c8d2a48b0dfbd95961703d2a2b67ff7a5062aa52d4d3bdfa3ae3adba084117
  • Pointer size: 132 Bytes
  • Size of remote file: 2.95 MB
static/photos/P1010377 (4).JPG ADDED

Git LFS Details

  • SHA256: 1d72807a79c168d61ed68cbe69567bb7caafecb3e1a9056dac75af54844496e5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.64 MB
static/photos/P1010378 (2).JPG ADDED

Git LFS Details

  • SHA256: 1990125fd79a29817188d36c00820fd1a08bbb5df9842ca56637b4f19f166aab
  • Pointer size: 132 Bytes
  • Size of remote file: 3.4 MB
static/photos/P1010380 (2).JPG ADDED

Git LFS Details

  • SHA256: 032bdd0e2b3011ed23cb7049a9bc8c44100747463ab2f1e48438b7bc8b772627
  • Pointer size: 132 Bytes
  • Size of remote file: 1.93 MB
static/photos/P1010381 (3).JPG ADDED

Git LFS Details

  • SHA256: d4610cee17369a1dd243ba8e4f9106d548501cb53f00af50a869ec37d5e59e2e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.67 MB
static/photos/P1010389 (3).JPG ADDED

Git LFS Details

  • SHA256: cbd0f6c63b6d4777cd55a457841bfc7d54ab40103d4a0b8357c4d65a16f7964d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.73 MB
static/photos/P1010398 (2).JPG ADDED

Git LFS Details

  • SHA256: dbe9f47be5dd86d165bf1deb3c8503dd5c9d8c4cda89fa0b08a0c20c817f39bf
  • Pointer size: 132 Bytes
  • Size of remote file: 2.4 MB
static/photos/P1010399 (2).JPG ADDED

Git LFS Details

  • SHA256: e0a8e3f646d4766933531e77f88740cd70a8aacd6f3cf1025334fa8b5496e72c
  • Pointer size: 132 Bytes
  • Size of remote file: 3.05 MB
static/photos/P1010401 (2).JPG ADDED

Git LFS Details

  • SHA256: 952c1a3526a885ec40b02101158a2737ea087b0b573b4d9d6c88103f757cc024
  • Pointer size: 132 Bytes
  • Size of remote file: 2.72 MB
static/photos/P1010403 (2).JPG ADDED

Git LFS Details

  • SHA256: 1a244b23f781867d0da70a909e899e18a8c864f702c8d5e0eaf71d1eb9186667
  • Pointer size: 132 Bytes
  • Size of remote file: 2.41 MB
static/photos/P1010412 (2).JPG ADDED

Git LFS Details

  • SHA256: 9df409d093ce5961defb0977cc78f1c2305ebb02c43c3caff13deb04a2a1a758
  • Pointer size: 132 Bytes
  • Size of remote file: 3.41 MB
static/photos/P1010415 (2).JPG ADDED

Git LFS Details

  • SHA256: accfb075a6dbaf093b09a8daee5b3ff80dea61de1332cee0f898610bf473d012
  • Pointer size: 132 Bytes
  • Size of remote file: 2.69 MB
static/photos/P1010417 (2).JPG ADDED

Git LFS Details

  • SHA256: 2cc39380c79e87c7c04ceb0366eff8d4dbdfe052da6eed853403e573d8542831
  • Pointer size: 132 Bytes
  • Size of remote file: 1.94 MB
static/photos/P1010420 (2).JPG ADDED

Git LFS Details

  • SHA256: b9cbf3c36237527fe09d8b3e72267967eb66553b9234446494bc0a70c8533340
  • Pointer size: 131 Bytes
  • Size of remote file: 923 kB
static/photos/P1010424 (2).JPG ADDED

Git LFS Details

  • SHA256: b7986291995d3fd6780130064c8161f2aa7c5e678530c3fe36a8c503f062b6c3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB
static/photos/Screenshot_20220321-131246__01__01.jpg ADDED

Git LFS Details

  • SHA256: 50cf31e2248ee68dec0bc1c58afcb3b71a5907dc8dc188458798197a62376d65
  • Pointer size: 131 Bytes
  • Size of remote file: 590 kB
static/photos/Screenshot_20220321-131417__01.jpg ADDED

Git LFS Details

  • SHA256: a79a41077e1ec2f81e97b193caa0c88c9ddb052bcf15ef116bc5d2542676e29a
  • Pointer size: 131 Bytes
  • Size of remote file: 375 kB
static/photos/Screenshot_20220321-131630__01__01.jpg ADDED

Git LFS Details

  • SHA256: f44a4e0d57226944e76be633d244e979a743c862b970495f7c8c657992060240
  • Pointer size: 131 Bytes
  • Size of remote file: 475 kB
static/photos/lead-armchair.JPG ADDED

Git LFS Details

  • SHA256: 5046530e331a2b9af0ec385c5582943dc79e930b91008665c5b5fc90a56a4578
  • Pointer size: 132 Bytes
  • Size of remote file: 3 MB
static/triangles.svg ADDED