-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove values, were not figured out enough yet
- Loading branch information
Showing
2 changed files
with
56 additions
and
62 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,75 +1,19 @@ | ||
--- | ||
import Layout from "../layouts/Layout.astro"; | ||
const projects = [ | ||
{ | ||
name: "Basejump", | ||
link: "https://www.basejump.xyz/", | ||
}, | ||
{ | ||
name: "Garden Labs", | ||
link: "https://www.gardenlabs.xyz/", | ||
}, | ||
{ | ||
name: "PYUSD.to", | ||
link: "https://pyusd.to", | ||
}, | ||
{ | ||
name: "PYUSD.pizza", | ||
link: "https://pyusd.pizza", | ||
}, | ||
{ | ||
name: "PYUSD", | ||
link: "https://www.paypal.com/us/digital-wallet/manage-money/crypto/pyusd", | ||
}, | ||
{ | ||
name: "Brale", | ||
link: "https://brale.xyz/", | ||
}, | ||
{ | ||
name: "Broadside", | ||
link: "https://br0ads1de.com/", | ||
}, | ||
{ | ||
name: "Nervous", | ||
link: "https://www.nervous.net/", | ||
}, | ||
{ | ||
name: "Munko", | ||
link: "https://opensea.io/collection/munko-by-david-choe", | ||
}, | ||
{ | ||
name: "Mini Melties", | ||
link: "https://www.minimelties.com/", | ||
}, | ||
{ | ||
name: "General Galactic", | ||
link: "https://generalgalactic.eth.limo/", | ||
}, | ||
{ | ||
name: "Citadao", | ||
link: "https://citadao.io", | ||
}, | ||
]; | ||
import projects from "./projects.json"; | ||
const description = "Your partner in emerging tech"; | ||
--- | ||
|
||
<Layout | ||
title="MONO KOTO" | ||
description="We help teams understand and creatively leverage new technology to build remarkable new products." | ||
> | ||
<Layout title="MONO KOTO" description={description}> | ||
<article class="box"> | ||
<div class="space-y-[1.5rem]"> | ||
<div> | ||
<h1>Mono Koto</h1> | ||
</div> | ||
|
||
<p>Your emerging tech partner.</p> | ||
|
||
<div> | ||
<p>Design with humility.</p> | ||
<p>Build with love.</p> | ||
<p>Create with integrity.</p> | ||
</div> | ||
<p>{description}</p> | ||
|
||
<p> | ||
From the Japanese <strong>mono</strong> (object thing) and{" "} | ||
|
@@ -93,7 +37,7 @@ const projects = [ | |
</div> | ||
<div> | ||
<p> | ||
Want to partner?{" "} | ||
Ready to join forces?{" "} | ||
<a href="mailto:[email protected]">[email protected]</a> | ||
</p> | ||
</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,50 @@ | ||
[ | ||
{ | ||
"name": "Basejump", | ||
"link": "https://www.basejump.xyz/" | ||
}, | ||
{ | ||
"name": "Garden Labs", | ||
"link": "https://www.gardenlabs.xyz/" | ||
}, | ||
{ | ||
"name": "PYUSD.to", | ||
"link": "https://pyusd.to" | ||
}, | ||
{ | ||
"name": "PYUSD.pizza", | ||
"link": "https://pyusd.pizza" | ||
}, | ||
{ | ||
"name": "PYUSD", | ||
"link": "https://www.paypal.com/us/digital-wallet/manage-money/crypto/pyusd" | ||
}, | ||
{ | ||
"name": "Brale", | ||
"link": "https://brale.xyz/" | ||
}, | ||
{ | ||
"name": "Broadside", | ||
"link": "https://br0ads1de.com/" | ||
}, | ||
{ | ||
"name": "Nervous", | ||
"link": "https://www.nervous.net/" | ||
}, | ||
{ | ||
"name": "Munko", | ||
"link": "https://opensea.io/collection/munko-by-david-choe" | ||
}, | ||
{ | ||
"name": "Mini Melties", | ||
"link": "https://www.minimelties.com/" | ||
}, | ||
{ | ||
"name": "General Galactic", | ||
"link": "https://generalgalactic.eth.limo/" | ||
}, | ||
{ | ||
"name": "Citadao", | ||
"link": "https://citadao.io" | ||
} | ||
] |