Skip to content

Commit cfc5de1

Browse files
committed
Fix links and branding
1 parent ae607f4 commit cfc5de1

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# The [FullStacksDev](https://FullStacks.dev) Angular and Firebase base template
1+
# The [FullStacksDev](https://fullstacks.dev) Angular and Firebase base template
22

3-
Part of the curated [**FullStacksDev Angular and Firebase tech stack**](https://FullStacks.dev/TODO). For solo devs and very small teams.
3+
Part of the curated [**FullStacksDev Angular and Firebase tech stack**](https://fullstacks.dev/#angular-and-firebase). For solo devs and very small teams.
44

55
An opinionated full-stack starting point for building a web app, using Angular and Firebase. Aiming to be lean and useful enough so you can hit the ground running and focus on stuff that matters.
66

@@ -455,20 +455,20 @@ Some email templates (e.g. for Authentication) are customizable in the [Firebase
455455

456456
## How we decide what goes into the base template
457457

458-
It's important that the base template is as lean and broadly useful as possible, whilst maintaining the opinionated approach to the tech stack, architecture and patterns that we are developing as part of the _curated tech stacks_ approach in [FullStacksDev](https://FullStacks.dev).
458+
It's important that the base template is as lean and broadly useful as possible, whilst maintaining the opinionated approach to the tech stack, architecture and patterns that we are developing as part of the _curated tech stacks_ approach in [FullStacksDev](https://fullstacks.dev).
459459

460460
For this reason, we carefully consider what goes into the base template and err on the side of caution. New capabilities are only added to the base template when they are proven to be broadly useful and fit within the tech stack, by first applying them to real-world projects and the example apps.
461461

462462
## What next? Check out the example apps for this tech stack…
463463

464-
If you want to continue learning more about the [FullStacksDev](https://FullStacks.dev) Angular and Firebase tech stack you can check out the premium example apps built using this template:
464+
If you want to continue learning more about the [FullStacksDev](https://fullstacks.dev) Angular and Firebase tech stack you can check out the premium example apps built using this template:
465465

466-
- [Simple example app](TODO)
467-
- [Advanced example app](TODO)
466+
- [Simple example app](https://github.com/FullStacksDev/angular-and-firebase-simple-example-app)
467+
- [Advanced example app](https://github.com/FullStacksDev/angular-and-firebase-advanced-example-app)
468468

469469
These apps showcase the capabilities of the tech stack and give you an opinionated, pragmatic and in-depth learning experience. Each come with comprehensive documentation and learning content covering architecture, design decisions, data models, patterns, practices, tech stack capabilities and more.
470470

471-
You can read more about the purpose and specs of the example apps here: TODO: link to the example apps spec page
471+
You can read more about the [purpose and specs of the example apps](https://fullstacks.dev/example-apps).
472472

473473
## License
474474

app/src/app/website/feature/home-page.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ describe('HomePageComponent', () => {
1717
const el = ngMocks.find('h1');
1818
expect(el).toBeTruthy();
1919
expect(el.nativeElement.textContent).toContain(
20-
'This is the FullStacks.dev Angular and Firebase template running on Firebase',
20+
'This is the FullStacksDev Angular and Firebase template running on Firebase',
2121
);
2222
});
2323
});

app/src/app/website/feature/home-page.component.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ import { ChangeDetectionStrategy, Component } from '@angular/core';
66
imports: [],
77
template: `
88
<h1 class="mat-headline-5 mt-8 text-center leading-normal">
9-
This is the FullStacks.dev Angular and Firebase template running on Firebase
9+
This is the
10+
<a class="underline decoration-dotted" href="https://fullstacks.dev">FullStacksDev</a>
11+
Angular and Firebase template running on Firebase
1012
</h1>
1113
`,
1214
styles: ``,

0 commit comments

Comments
 (0)