Website for the Urbit Foundation's developer program
Go to file
James D. Amberger 1e0cd5ecc2 Correct discussion and example of tishep
The existing example doesn't compile because it contains

    (add a b c)

There's a change that I'm the one that wrote the broken example back in
like 2017 but anyway, the example provided in this commit 1) compiles
and 2) illustrates why we have these kinds of "inverted" runes.

The discussion also needed a fix:

> `=-` is just like `=+` but its subexpressions are reversed. `=-` looks
> better than `=+` when the expression you're pinning to the subject is much
> *larger* than the expression that uses it.
2023-03-21 20:12:24 -04:00
components pulling in data from toml in courses, using image tags for svgs, adding next session on tall cards 2023-01-27 16:54:51 -08:00
content Correct discussion and example of tishep 2023-03-21 20:12:24 -04:00
lib fix anchor links 2023-03-05 20:46:31 -03:00
pages pulling in data from toml in courses, using image tags for svgs, adding next session on tall cards 2023-01-27 16:54:51 -08:00
public/images icons: port tall icons into react components 2022-10-10 16:29:36 -07:00
styles build: new site landing page 2022-06-21 17:49:31 -07:00
.gitignore build: new site landing page 2022-06-21 17:49:31 -07:00
next.config.js build: use @urbit/foundation-design-system 2022-08-02 12:53:24 -07:00
package-lock.json Merge pull request #249 from netpoetica/refactor/specify-node-engine-version 2022-12-13 18:07:57 -06:00
package.json Merge pull request #249 from netpoetica/refactor/specify-node-engine-version 2022-12-13 18:07:57 -06:00
postcss.config.js build: new site landing page 2022-06-21 17:49:31 -07:00
README.md update readme instructions to specify node version and add installation reminder 2022-12-03 23:51:06 -08:00
tailwind.config.js tailwind.config: throw markdown parsing through our renderer, not markdoc 2022-10-05 15:53:21 -07:00
vercel.json vercel.json: add quickstart redir 2022-06-29 16:13:12 -07:00
yarn.lock updating directory 2023-01-13 12:03:42 -08:00

This is a Next.js project bootstrapped with create-next-app.

Getting Started

First, ensure you have a compatible version of node and npm to avoid issues:

node --version
# v14.17.6

npm --version
# 9.1.3

# or
yarn --version
# 1.22.19

Next, install dependencies:

npm i
# or
yarn install

Finally, run the development server:

npm run dev
# or
yarn dev

Open http://localhost:3000 with your browser to see the result.

You can start editing the page by modifying pages/index.js. The page auto-updates as you edit the file.

API routes can be accessed on http://localhost:3000/api/hello. This endpoint can be edited in pages/api/hello.js.

The pages/api directory is mapped to /api/*. Files in this directory are treated as API routes instead of React pages.

Install Foundation Design System Updates

rm -rf package-lock.json node_modules .next

npm i && npm run dev

Learn More

To learn more about Next.js, take a look at the following resources:

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!

Deploy on Vercel

The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.

Check out our Next.js deployment documentation for more details.