From cdef21682a88497317f746a333f6201c40d7666f Mon Sep 17 00:00:00 2001 From: "netop://ウィビ" Date: Fri, 5 Jun 2026 10:25:53 -0700 Subject: initial commit --- .gitignore | 2 + assets/apple-touch-icon.png | Bin 0 -> 1927 bytes assets/favicon.ico | Bin 0 -> 41566 bytes assets/favicon.svg | 1 + assets/og-image.png | Bin 0 -> 1217727 bytes assets/style/root.css | 38 ++++ assets/style/type.css | 31 +++ assets/type/400.woff2 | Bin 0 -> 37736 bytes assets/type/400i.woff2 | Bin 0 -> 39036 bytes assets/type/600.woff2 | Bin 0 -> 38600 bytes assets/type/600i.woff2 | Bin 0 -> 39388 bytes assets/work/beauty-lynk.jpeg | Bin 0 -> 1234396 bytes assets/work/chronver.jpeg | Bin 0 -> 923988 bytes assets/work/dap.jpeg | Bin 0 -> 1260999 bytes assets/work/house-lafond.jpeg | Bin 0 -> 851360 bytes assets/work/nando-nate.jpeg | Bin 0 -> 202755 bytes assets/work/nickel.jpeg | Bin 0 -> 832303 bytes assets/work/uchu.jpeg | Bin 0 -> 791121 bytes index.html | 446 ++++++++++++++++++++++++++++++++++++++++++ 19 files changed, 518 insertions(+) create mode 100644 .gitignore create mode 100644 assets/apple-touch-icon.png create mode 100644 assets/favicon.ico create mode 100644 assets/favicon.svg create mode 100644 assets/og-image.png create mode 100644 assets/style/root.css create mode 100644 assets/style/type.css create mode 100644 assets/type/400.woff2 create mode 100644 assets/type/400i.woff2 create mode 100644 assets/type/600.woff2 create mode 100644 assets/type/600i.woff2 create mode 100644 assets/work/beauty-lynk.jpeg create mode 100644 assets/work/chronver.jpeg create mode 100644 assets/work/dap.jpeg create mode 100644 assets/work/house-lafond.jpeg create mode 100644 assets/work/nando-nate.jpeg create mode 100644 assets/work/nickel.jpeg create mode 100644 assets/work/uchu.jpeg create mode 100644 index.html diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..090d9bb --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.DS_Store +deploy.sh diff --git a/assets/apple-touch-icon.png b/assets/apple-touch-icon.png new file mode 100644 index 0000000..3f97c2a Binary files /dev/null and b/assets/apple-touch-icon.png differ diff --git a/assets/favicon.ico b/assets/favicon.ico new file mode 100644 index 0000000..7bf9cea Binary files /dev/null and b/assets/favicon.ico differ diff --git a/assets/favicon.svg b/assets/favicon.svg new file mode 100644 index 0000000..feefbac --- /dev/null +++ b/assets/favicon.svg @@ -0,0 +1 @@ + diff --git a/assets/og-image.png b/assets/og-image.png new file mode 100644 index 0000000..c86ce75 Binary files /dev/null and b/assets/og-image.png differ diff --git a/assets/style/root.css b/assets/style/root.css new file mode 100644 index 0000000..28b325d --- /dev/null +++ b/assets/style/root.css @@ -0,0 +1,38 @@ +:root { + --background-color: var(--uchu-gray-1); + --base-grid-color1: oklch(var(--uchu-blue-3-raw) / 30%); + --base-grid-color2: oklch(var(--uchu-purple-3-raw) / 30%); + --baseline: calc(var(--line-height) / 2); + --block-spacing-bottom: var(--line-height); + --block-spacing-top: 0; + --column-gap: calc(var(--line-height) * 2); + --display-scale: 1; + --font-mono: "inc mono"; + --font-sans: null; + --font-serif: null; + --font-size: 12px; + --foreground-color: oklch(var(--uchu-yin-raw) / 80%); + --h1-size: 2.8rem; + --h2-size: 2.2rem; + --h3-size: 1.4rem; + --h4-size: 1.1rem; + --hr-thickness: 2px; + --line-height: calc(var(--font-size) * 1.5); + --pixel: 1px; + --row-gap: var(--line-height); + + @media only screen and (min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx) { + --display-scale: 2; + --pixel: 0.5px; + } + + @media only screen and (min-device-pixel-ratio: 2.5), only screen and (min-resolution: 2.5dppx) { + --display-scale: 3; + --pixel: 0.34px; + } + + @media only screen and (min-device-pixel-ratio: 3.5), only screen and (min-resolution: 3.5dppx) { + --display-scale: 4; + --pixel: 0.25px; + } +} diff --git a/assets/style/type.css b/assets/style/type.css new file mode 100644 index 0000000..2096864 --- /dev/null +++ b/assets/style/type.css @@ -0,0 +1,31 @@ +@font-face { + font-display: swap; + font-family: "inc mono"; + font-style: normal; + font-weight: 400; + src: url("../type/400.woff2") format("woff2"); +} + +@font-face { + font-display: swap; + font-family: "inc mono"; + font-style: italic; + font-weight: 400; + src: url("../type/400i.woff2") format("woff2"); +} + +@font-face { + font-display: swap; + font-family: "inc mono"; + font-style: normal; + font-weight: 600; + src: url("../type/600.woff2") format("woff2"); +} + +@font-face { + font-display: swap; + font-family: "inc mono"; + font-style: italic; + font-weight: 600; + src: url("../type/600i.woff2") format("woff2"); +} diff --git a/assets/type/400.woff2 b/assets/type/400.woff2 new file mode 100644 index 0000000..ffafed3 Binary files /dev/null and b/assets/type/400.woff2 differ diff --git a/assets/type/400i.woff2 b/assets/type/400i.woff2 new file mode 100644 index 0000000..527be83 Binary files /dev/null and b/assets/type/400i.woff2 differ diff --git a/assets/type/600.woff2 b/assets/type/600.woff2 new file mode 100644 index 0000000..57a7053 Binary files /dev/null and b/assets/type/600.woff2 differ diff --git a/assets/type/600i.woff2 b/assets/type/600i.woff2 new file mode 100644 index 0000000..5a12834 Binary files /dev/null and b/assets/type/600i.woff2 differ diff --git a/assets/work/beauty-lynk.jpeg b/assets/work/beauty-lynk.jpeg new file mode 100644 index 0000000..0b42374 Binary files /dev/null and b/assets/work/beauty-lynk.jpeg differ diff --git a/assets/work/chronver.jpeg b/assets/work/chronver.jpeg new file mode 100644 index 0000000..bcb3143 Binary files /dev/null and b/assets/work/chronver.jpeg differ diff --git a/assets/work/dap.jpeg b/assets/work/dap.jpeg new file mode 100644 index 0000000..6610564 Binary files /dev/null and b/assets/work/dap.jpeg differ diff --git a/assets/work/house-lafond.jpeg b/assets/work/house-lafond.jpeg new file mode 100644 index 0000000..c5b9ac2 Binary files /dev/null and b/assets/work/house-lafond.jpeg differ diff --git a/assets/work/nando-nate.jpeg b/assets/work/nando-nate.jpeg new file mode 100644 index 0000000..d744390 Binary files /dev/null and b/assets/work/nando-nate.jpeg differ diff --git a/assets/work/nickel.jpeg b/assets/work/nickel.jpeg new file mode 100644 index 0000000..86624ce Binary files /dev/null and b/assets/work/nickel.jpeg differ diff --git a/assets/work/uchu.jpeg b/assets/work/uchu.jpeg new file mode 100644 index 0000000..5f6a0d1 Binary files /dev/null and b/assets/work/uchu.jpeg differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..4c63b50 --- /dev/null +++ b/index.html @@ -0,0 +1,446 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + Design Services for the Good Natured + + + + + + + + + + + + +
+
+

design services for the good natured.

+
+
+ +
+
+
+

Digital Architechs for Ideas Never Cease

+

and select clients

+
+
+ +
+
+
+

Mission

+ +
+

At dsgn., we believe that design is not just about looks. What you feel and experience can and should be considered as well.

+

The Web is the great equalizer for ideas. One can easily get their own ideas realized and launched.

+

We exist to assist in this incredible process.

+
+
+
+
+ +
+
+
+

Contact

+ + +
+
+
+ +
+
+
+

Work

+ +
    +
  1. +

    Client ChronVer

    +

    Focus Developer Tooling

    +

    Tasks Art Direction / Web Design / Web Development

    +

    URL chronver.org

    + +
    + +
    +
  2. + +
  3. +

    Client Dap

    +

    Focus Blockchain

    +

    Tasks Art Direction / Web Design / Web Development

    +

    URL dap.sh

    + +
    + +
    +
  4. + +
  5. +

    Client uchū

    +

    Focus Designer Tooling / Developer Tooling

    +

    Tasks Art Direction / Web Design / Web Development

    +

    URL uchu.style

    + +
    + +
    +
  6. + +
  7. +

    Client Nickel

    +

    Focus Video Hosting

    +

    Tasks Art Direction / Web Design / Web Development

    +

    URL nickel.video

    + +
    + +
    +
  8. +
+
+
+
+
+ + + + -- cgit v1.2.3