Skip to content

Commit 20e99e4

Browse files
committed
fix: remove broken fwa.dev links, use the term with lower case.
1 parent c8d9699 commit 20e99e4

10 files changed

Lines changed: 11 additions & 12 deletions

File tree

src/views/docs/en/about/contribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Architect is an open source project and you can totally help out! Contributing d
1111

1212
We are always happy to review and potentially accept pull request to Architect repositories. In general, we suggest opening an issue and starting a discussion in the [Discord](https://discord.gg/y5A2eTsCRX) before you embark on any large project, as there may be requirements or considerations that you may not be aware of in advance.
1313

14-
If you have a larger problem to solve or idea for a new feature, please file an issue for community discussion. If you have a time-sensitive problem and need to talk things through, you can almost always find someone online in our [Discord](https://discord.gg/y5A2eTsCRX). (It's also a great place to socialize new ideas and to solicit help on how to model specific [Functional Web App (FWA)](https://fwa.dev) patterns.)
14+
If you have a larger problem to solve or idea for a new feature, please file an issue for community discussion. If you have a time-sensitive problem and need to talk things through, you can almost always find someone online in our [Discord](https://discord.gg/y5A2eTsCRX). (It's also a great place to socialize new ideas and to solicit help on how to model specific functional web app patterns.)
1515

1616
Please help us by making it easy for us to help you! If you are experiencing a bug, please have a reduced test case and steps to reproduce prepared. In our process, the first step to resolution is to create a failing test case so we can ensure there are no future regressions. By having a reduced case (even just an example project) and steps to reproduce, you will dramatically reduce the time to getting your bug fixed.
1717

src/views/docs/en/get-started/detailed-aws-setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ Where that is not possible, we recommend using AWS Lambda's provided, *non-bundl
176176

177177
### Architect's AWS SDK strategy
178178

179-
A core goal of Architect is to make building [Functional Web Apps](https://fwa.dev) simpler, and an important aspect of that objective is to help (automatically) manage the many dependencies in use across your Lambdas, whether your project has one or one hundred of them.
179+
A core goal of Architect is to make building functional web apps simpler, and an important aspect of that objective is to help (automatically) manage the many dependencies in use across your Lambdas, whether your project has one or one hundred of them.
180180

181181
However, in the of AWS SDK, AWS manages that dependency within the Lambda environment. For the aforementioned reasons, Architect does not attempt to automatically manage or include any version of AWS SDK in the resources it manages on your behalf.
182182

src/views/docs/en/get-started/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ category: Get started
44
description: Get started quickly with Architect
55
---
66

7-
> Architect is a simple framework for building and delivering powerful [Functional Web Apps (FWAs)](https://fwa.dev) on AWS
7+
> Architect is a simple framework for building and delivering powerful functional web apps on AWS
88
99
## Create a new project
1010

src/views/docs/en/get-started/why-architect.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ category: Get started
44
description: Why is Architect important to you?
55
---
66

7-
> Architect provides everything you need to build massively scalable [Functional Web Apps (FWAs)](https://fwa.dev) with low code, clear and terse config, and zero ceremony
7+
> Architect provides everything you need to build massively scalable functional web apps with low code, clear and terse config, and zero ceremony
88
99

1010
## The best developer experience
1111

12-
Building a functional web app can be fraught with complex vendor arcana and market noise. This is where Architect comes in. Architect is an opinionated developer experience (DX) for building database backed web apps with AWS. We remove all the noise and friction to building FWAs. We prioritize speed with fast local dev, smart configurable defaults and flexible Infrastructure as Code. And then we get out of your way so you can focus on business logic instead of glue code and only pay for services while in use, on-demand, and otherwise _scale to zero_.
12+
Building a functional web app can be fraught with complex vendor arcana and market noise. This is where Architect comes in. Architect is an opinionated developer experience (DX) for building database backed web apps with AWS. We remove all the noise and friction to building functional web apps. We prioritize speed with fast local dev, smart configurable defaults and flexible Infrastructure as Code. And then we get out of your way so you can focus on business logic instead of glue code and only pay for services while in use, on-demand, and otherwise _scale to zero_.
1313

1414

1515
### Work locally

src/views/docs/en/guides/backend/events-and-queues.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ sections:
1111

1212
## Overview
1313

14-
Background tasks are a common workload and perfect for [Functional Web Apps](https://fwa.dev). They reinforce event-driven architecture and allow you to perform asynchronous work across a distributed system. These functions are well suited for processes that don't require an immediate response, or are too resource intensive for a single function.
14+
Background tasks are a common workload and perfect for functional web apps. They reinforce event-driven architecture and allow you to perform asynchronous work across a distributed system. These functions are well suited for processes that don't require an immediate response, or are too resource intensive for a single function.
1515

1616
Architect has three main primitives of background functions:
1717
- [@events](/docs/en/reference/arc-pragmas/@events) - A pub/sub service that uses SNS.

src/views/docs/en/guides/developer-experience/custom-source-paths.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Define resources in a more verbose format to configure custom Lambda source dire
77

88
## Use cases
99

10-
- Migrate existing repos to the [Functional Web App pattern](https://fwa.dev)
10+
- Migrate existing repos to the functional web app pattern
1111
- Use frontend frameworks that have their own folder requirements
1212
- Better enable local code transpilation by pointing to generated `./dist` directories
1313

src/views/docs/en/guides/developer-experience/dependency-management.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: Architect dependency structure and hydration
66

77
## Overview
88

9-
[Functional Web Apps](https://fwa.dev) have both project-level dependencies and individual function-level dependencies.
9+
Functional web apps have both project-level dependencies and individual function-level dependencies.
1010

1111
Project-level dependencies are defined at the root of the project, and may include things like developer dependencies.
1212

src/views/docs/en/guides/developer-experience/logging-and-monitoring.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Architect logs to [AWS CloudWatch](https://aws.amazon.com/cloudwatch/).
1717

1818
### See also
1919

20-
- CloudWatch captures many metrics from [Functional Web App](https://fwa.dev) primitives, especially [API Gateway](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-metrics-and-dimensions.html)
20+
- CloudWatch captures many metrics from functional web app primitives, especially [API Gateway](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-metrics-and-dimensions.html)
2121
- [X-Ray](https://aws.amazon.com/xray/) offers deeper service call introspection capabilities
2222
- There are many third party tools to further extend your app with structured logs
2323

src/views/docs/en/guides/plugins/overview.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ another-private-plugin # loads from `foo/index.js`
3333

3434
## Authoring plugins
3535

36-
Architect provides a suite of workflows, conventions, and optimized defaults for building excellent [Functional Web Apps][fwa] with AWS. Architect plugins enable developers to extend (or override) this functionality in a variety of ways with interfaces into both workflows and resource creation.
36+
Architect provides a suite of workflows, conventions, and optimized defaults for building excellent functional web apps with AWS. Architect plugins enable developers to extend (or override) this functionality in a variety of ways with interfaces into both workflows and resource creation.
3737

3838
To create a fresh plugin, you can run `npx arc create --plugin my-plugin-name`
3939

@@ -111,7 +111,6 @@ my-private-macro
111111
[manifest]: ../../get-started/project-manifest
112112
[deployment]: ../developer-experience/deployment
113113
[macros]: #macros
114-
[fwa]: https://fwa.dev
115114
[hydrate]: ../../reference/cli/hydrate
116115
[deploy]: ../../reference/cli/deploy
117116
[init]: ../../reference/cli/init

src/views/landing/elements/why-architect.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default function WhyArchitect ({ html }) {
44
<h2 class="text5 leading1 tracking-2 font-medium mbs0 mbe4">Why <span class="font-bold">Architect</span>?</h2>
55
66
<p class="text1 tracking-1 measure">
7-
Architect provides everything you need to build massively scalable <a class="underline" href="https://fwa.dev">Functional Web Apps</a> on AWS with low code, clear and terse config, and zero ceremony.
7+
Architect provides everything you need to build massively scalable functional web apps on AWS with low code, clear and terse config, and zero ceremony.
88
</p>
99
1010
<section class="grid col-1 gap4 mb5">

0 commit comments

Comments
 (0)