Skip to content

Commit bb83baa

Browse files
committed
New domain: usefresh.dev
1 parent 56faed1 commit bb83baa

29 files changed

Lines changed: 57 additions & 51 deletions

File tree

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Contributing Guidelines
22

33
For the full contributing guide, see the
4-
[Fresh documentation](https://fresh.deno.dev/docs/latest/contributing).
4+
[Fresh documentation](https://usefresh.dev/docs/latest/contributing).
55

66
## PR title format
77

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
- name: Check docs
7272
run: deno task check:docs
7373

74-
- name: Build fresh.deno.dev
74+
- name: Build usefresh.dev
7575
if: startsWith(matrix.os, 'ubuntu') && matrix.deno == 'v2.x'
7676
run: deno task build-www
7777

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ with workspace members in `packages/*` and `www/`.
2424

2525
### Other directories
2626

27-
- **`www/`**: Documentation website (fresh.deno.dev), built with Fresh + Vite +
27+
- **`www/`**: Documentation website (usefresh.dev), built with Fresh + Vite +
2828
Tailwind. Has its own routes, islands, and vite.config.ts.
2929
- **`docs/`**: Markdown documentation organized by version (`latest/`, `1.x/`,
3030
`canary/`).

README.md

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# fresh
55

6-
<img align="right" src="https://fresh.deno.dev/logo.svg" height="150px" alt="The Fresh logo: a sliced lemon dripping with juice">
6+
<img align="right" src="https://usefresh.dev/logo.svg" height="150px" alt="The Fresh logo: a sliced lemon dripping with juice">
77

88
**Fresh** is a next generation web framework, built for speed, reliability, and
99
simplicity.
@@ -18,8 +18,8 @@ Some stand-out features:
1818

1919
## 📖 Documentation
2020

21-
The [documentation](https://fresh.deno.dev/docs/introduction) is available on
22-
[fresh.deno.dev](https://fresh.deno.dev/).
21+
The [documentation](https://usefresh.dev/docs/introduction) is available on
22+
[usefresh.dev](https://usefresh.dev/).
2323

2424
## 🚀 Getting started
2525

@@ -58,7 +58,7 @@ To deploy the project to the live internet, you can use
5858
subdomain with no configuration necessary.
5959

6060
For a more in-depth getting started guide, visit the
61-
[Getting Started](https://fresh.deno.dev/docs/getting-started) page in the Fresh
61+
[Getting Started](https://usefresh.dev/docs/getting-started) page in the Fresh
6262
docs.
6363

6464
## Contributing
@@ -69,9 +69,8 @@ We appreciate your help! To contribute, please read our
6969
## Adding your project to the showcase
7070

7171
If you feel that your project would be helpful to other Fresh users, please
72-
consider putting your project on the
73-
[showcase](https://fresh.deno.dev/showcase). However, websites that are just for
74-
promotional purposes may not be listed.
72+
consider putting your project on the [showcase](https://usefresh.dev/showcase).
73+
However, websites that are just for promotional purposes may not be listed.
7574

7675
To take a screenshot, run the following command.
7776

@@ -88,15 +87,15 @@ preferably with source code on GitHub, but not required.
8887
![Made with Fresh](./www/static/fresh-badge.svg)
8988

9089
```md
91-
[![Made with Fresh](https://fresh.deno.dev/fresh-badge.svg)](https://fresh.deno.dev)
90+
[![Made with Fresh](https://usefresh.dev/fresh-badge.svg)](https://usefresh.dev)
9291
```
9392

9493
```html
95-
<a href="https://fresh.deno.dev">
94+
<a href="https://usefresh.dev">
9695
<img
9796
width="197"
9897
height="37"
99-
src="https://fresh.deno.dev/fresh-badge.svg"
98+
src="https://usefresh.dev/fresh-badge.svg"
10099
alt="Made with Fresh"
101100
/>
102101
</a>
@@ -105,15 +104,15 @@ preferably with source code on GitHub, but not required.
105104
![Made with Fresh(dark)](./www/static/fresh-badge-dark.svg)
106105

107106
```md
108-
[![Made with Fresh](https://fresh.deno.dev/fresh-badge-dark.svg)](https://fresh.deno.dev)
107+
[![Made with Fresh](https://usefresh.dev/fresh-badge-dark.svg)](https://usefresh.dev)
109108
```
110109

111110
```html
112-
<a href="https://fresh.deno.dev">
111+
<a href="https://usefresh.dev">
113112
<img
114113
width="197"
115114
height="37"
116-
src="https://fresh.deno.dev/fresh-badge-dark.svg"
115+
src="https://usefresh.dev/fresh-badge-dark.svg"
117116
alt="Made with Fresh"
118117
/>
119118
</a>

docs/1.x/concepts/middleware.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ for a `route`, as opposed to something like `http://localhost:8001/favicon.ico`.
144144

145145
### Example
146146

147-
Initiate a new Fresh project (`deno run -A -r https://fresh.deno.dev/`) and then
147+
Initiate a new Fresh project (`deno run -A -r https://usefresh.dev/`) and then
148148
create a `_middleware.ts` file in the `routes` folder like this:
149149

150150
```ts routes/_middleware.ts

docs/1.x/concepts/updating.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ To run the auto updater, run the following command from the root of your
4242
project:
4343

4444
```sh Terminal
45-
$ deno run -A -r https://fresh.deno.dev/update
45+
$ deno run -A -r https://usefresh.dev/update
4646
```
4747

4848
You will be prompted to confirm the changes that will be made to your project.

docs/1.x/examples/authentication-with-supabase.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The purpose of the example app we're building here is to showcase the basic
2424
building blocks of an implementation. As such, it is limited in functionality
2525
and purposefully leaves out things like
2626
[password resets](https://supabase.com/docs/guides/auth/server-side/email-based-auth-with-pkce-flow-for-ssr),
27-
[proper error handling](https://fresh.deno.dev/docs/1.x/concepts/error-pages) as
27+
[proper error handling](https://usefresh.dev/docs/1.x/concepts/error-pages) as
2828
well as validating input form data. You can find the
2929
[full code here](https://github.com/morlinbrot/supa-fresh-pkce), where the
3030
missing functionality is implemented.
@@ -226,7 +226,7 @@ we are writing next.
226226

227227
We can now write a middleware that will check the auth status of any request,
228228
guarding any protected routes. You can read up on middlewares and where to put
229-
them [in the docs](https://fresh.deno.dev/docs/1.x/concepts/middleware).
229+
them [in the docs](https://usefresh.dev/docs/1.x/concepts/middleware).
230230

231231
```ts routes/_middleware.ts
232232
import { FreshContext } from "$fresh/server.ts";

docs/1.x/examples/changing-the-src-dir.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ description: |
33
Change the source directory to effectively manage your project.
44
---
55

6-
When you initialize a project with `deno run -A -r https://fresh.deno.dev`,
7-
you'll end up with a project like the following:
6+
When you initialize a project with `deno run -A -r https://usefresh.dev`, you'll
7+
end up with a project like the following:
88

99
```txt-files Project Structure
1010
<project root>

docs/1.x/examples/rendering-markdown.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ possibilities:
1111
3. the markdown is on a file
1212

1313
The following file uses
14-
[dynamic routing](https://fresh.deno.dev/docs/getting-started/dynamic-routes) to
14+
[dynamic routing](https://usefresh.dev/docs/getting-started/dynamic-routes) to
1515
handle the three cases. It's assumed this file is called `[slug].tsx`:
1616

1717
```ts routes/[slug].tsx

docs/1.x/examples/setting-the-language.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ description: |
33
Set the lang attribute in the <html> tag.
44
---
55

6-
When you initialize a project with `deno run -A -r https://fresh.deno.dev`,
7-
you'll end up with a `main.ts` like the following:
6+
When you initialize a project with `deno run -A -r https://usefresh.dev`, you'll
7+
end up with a `main.ts` like the following:
88

99
```ts main.ts
1010
/// <reference no-default-lib="true" />

0 commit comments

Comments
 (0)