Skip to content

Commit 9590983

Browse files
committed
Update domain name
1 parent b3de50f commit 9590983

12 files changed

Lines changed: 21 additions & 21 deletions

File tree

apps/dev/content/primary/fields/examples/rich-text-fields.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"_type": "link",
4343
"_id": "2mBtnFs3UoXk5a4dmDilfRbLNE8",
4444
"_link": "url",
45-
"href": "https://alinea.sh",
45+
"href": "https://alineacms.com",
4646
"target": "_blank"
4747
}
4848
]

apps/web/content/main/pages/blog/introducing-alinea.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@
141141
{
142142
"_type": "link",
143143
"_id": "o4XauEOqb4gRCdGGpisfp",
144-
"href": "https://demo.alinea.sh",
144+
"href": "https://demo.alineacms.com",
145145
"target": "_self"
146146
}
147147
]

apps/web/src/cms.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export const cms = createCMS({
5656
schema,
5757
workspaces: {main, demo},
5858
baseUrl: {
59-
production: process.env.VERCEL_URL ?? 'alinea.sh',
59+
production: process.env.VERCEL_URL ?? 'alineacms.com',
6060
development: 'http://localhost:3000'
6161
},
6262
handlerUrl: '/api/cms',

apps/web/src/layout/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ function HeaderLinks({links, style}: HeaderLinksProps) {
153153
<IcRoundSearch />
154154
</button>
155155
</SearchButton>
156-
{/*<a href="https://demo.alinea.sh" target="_blank" className={style()}>
156+
{/*<a href="https://demo.alineacms.com" target="_blank" className={style()}>
157157
Demo
158158
</a>*/}
159159
</>

apps/web/src/layout/HeaderLinks.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export function HeaderLinks({links, style}: HeaderLinksProps) {
3838
>
3939
Changelog
4040
</Link>
41-
<a href="https://demo.alinea.sh" target="_blank" className={style()}>
41+
<a href="https://demo.alineacms.com" target="_blank" className={style()}>
4242
Demo
4343
</a>
4444
</>

apps/web/src/page/BlogPostPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export async function generateMetadata({
3535
})
3636
const openGraphImage = page.metadata?.openGraph.image
3737
return {
38-
metadataBase: new URL('https://alinea.sh'),
38+
metadataBase: new URL('https://alineacms.com'),
3939
title: page.metadata?.title || page.title,
4040
description: page.metadata?.description || page.introduction,
4141
openGraph: {

apps/web/src/page/HomePage.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export async function generateMetadata(): Promise<Metadata> {
4141
metadata: Home.metadata
4242
}
4343
})
44-
const appUrl = 'https://alinea.sh'
44+
const appUrl = 'https://alineacms.com'
4545
const title = page.metadata?.title || page.title
4646
const ogTitle = page.metadata?.openGraph?.title || title
4747
const ogDescription =
@@ -107,7 +107,7 @@ export default async function HomePage() {
107107
)}
108108
{/*<WebTypo.Link
109109
className={styles.hero.demo()}
110-
href="https://demo.alinea.sh"
110+
href="https://demo.alineacms.com"
111111
target="_blank"
112112
>
113113
<div>
@@ -261,7 +261,7 @@ export default async function HomePage() {
261261
<div className={styles.home.demo()}>
262262
<iframe
263263
title="Alinea demo"
264-
src="https://demo.alinea.sh"
264+
src="https://demo.alineacms.com"
265265
className={styles.home.demo.inner()}
266266
/>
267267
</div>

changelog.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -383,12 +383,12 @@
383383
})
384384
```
385385

386-
- Add the [mutation API](https://alinea.sh/docs/content/editing-content) (#374)
386+
- Add the [mutation API](https://alineacms.com/docs/content/editing-content) (#374)
387387

388388
This introduces a commit method on CMS instances that can be used to mutate
389389
cms content. It can be used to create, update and delete Entries.
390390

391-
- Add the [Query namespace](https://alinea.sh/docs/content/query)
391+
- Add the [Query namespace](https://alineacms.com/docs/content/query)
392392

393393
## [0.7.1]
394394

readme.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![npm](https://img.shields.io/npm/v/alinea.svg)](https://npmjs.org/package/alinea)
22
[![install size](https://packagephobia.com/badge?p=alinea)](https://packagephobia.com/result?p=alinea)
33

4-
# [![Alinea CMS logo](https://github.com/alineacms/alinea/raw/HEAD/apps/web/public/logo.svg)](https://alinea.sh)
4+
# [![Alinea CMS logo](https://github.com/alineacms/alinea/raw/HEAD/apps/web/public/logo.svg)](https://alineacms.com)
55

66
Alinea is a modern content management system.
77

@@ -29,7 +29,7 @@ Open the dashboard to have a look around
2929
npx alinea dev
3030
```
3131

32-
[Start configuring types and fields →](https://alinea.sh/docs/configuration)
32+
[Start configuring types and fields →](https://alineacms.com/docs/configuration)
3333

3434
## Configure
3535

@@ -50,7 +50,7 @@ const Blog = Config.document('Blog', {
5050
})
5151
```
5252

53-
[Type options and fields →](https://alinea.sh/docs/configuration)
53+
[Type options and fields →](https://alineacms.com/docs/configuration)
5454

5555
## Query
5656

@@ -76,18 +76,18 @@ console.log(
7676
)
7777
```
7878

79-
[See the full api →](https://alinea.sh/docs/content/query)
79+
[See the full api →](https://alineacms.com/docs/content/query)
8080

8181
Content is available during static site generation and when server side querying.
8282
Content is bundled with your code and can be queried with zero network overhead.
8383

84-
[How alinea bundles content →](https://alinea.sh/docs/content)
84+
[How alinea bundles content →](https://alineacms.com/docs/content)
8585

8686
## Deploy anywhere
8787

8888
Alinea supports custom backends that can be hosted as a simple Node.js process or on serverless runtimes.
8989

90-
[Setup your backend →](https://alinea.sh/docs/deploy)
90+
[Setup your backend →](https://alineacms.com/docs/deploy)
9191

9292
## How to contribute to this project
9393

src/cloud/view/CloudAuth.browser.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export function CloudAuthView({setSession}: Auth.ViewProps) {
4141
</HStack>
4242
<Typo.P>
4343
Alinea requires a{' '}
44-
<Typo.Link href="https://alinea.sh/docs/deploy" target="_blank">
44+
<Typo.Link href="https://alineacms.com/docs/deploy" target="_blank">
4545
handler
4646
</Typo.Link>{' '}
4747
to continue.
@@ -92,7 +92,7 @@ export function CloudAuthView({setSession}: Auth.ViewProps) {
9292
<br />
9393
You can{' '}
9494
<Typo.Link
95-
href="https://alinea.sh/docs/deploy"
95+
href="https://alineacms.com/docs/deploy"
9696
target="_blank"
9797
>
9898
<span>fully configure a custom backend</span>

0 commit comments

Comments
 (0)