Skip to content

Commit 3f80fac

Browse files
authored
Merge pull request #5 from lsbyerley/dev
Prod Deploy 20240526
2 parents caf6ecb + e965355 commit 3f80fac

File tree

3 files changed

+3
-59
lines changed

3 files changed

+3
-59
lines changed

README.md

+2-53
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,3 @@
1-
<div align="center">
2-
<h1 align="center"><a href="https://www.epicweb.dev/epic-stack">The Epic Stack 🚀</a></h1>
3-
<strong align="center">
4-
Ditch analysis paralysis and start shipping Epic Web apps.
5-
</strong>
6-
<p>
7-
This is an opinionated project starter and reference that allows teams to
8-
ship their ideas to production faster and on a more stable foundation based
9-
on the experience of <a href="https://kentcdodds.com">Kent C. Dodds</a> and
10-
<a href="https://github.com/epicweb-dev/epic-stack/graphs/contributors">contributors</a>.
11-
</p>
12-
</div>
1+
# lucasb.dev
132

14-
```sh
15-
npx create-epic-app@latest
16-
```
17-
18-
[![The Epic Stack](https://github-production-user-asset-6210df.s3.amazonaws.com/1500684/246885449-1b00286c-aa3d-44b2-9ef2-04f694eb3592.png)](https://www.epicweb.dev/epic-stack)
19-
20-
[The Epic Stack](https://www.epicweb.dev/epic-stack)
21-
22-
<hr />
23-
24-
## Watch Kent's Introduction to The Epic Stack
25-
26-
[![Epic Stack Talk slide showing Flynn Rider with knives, the text "I've been around and I've got opinions" and Kent speaking in the corner](https://github-production-user-asset-6210df.s3.amazonaws.com/1500684/277818553-47158e68-4efc-43ae-a477-9d1670d4217d.png)](https://www.epicweb.dev/talks/the-epic-stack)
27-
28-
["The Epic Stack" by Kent C. Dodds](https://www.epicweb.dev/talks/the-epic-stack)
29-
30-
## Docs
31-
32-
[Read the docs](https://github.com/epicweb-dev/epic-stack/blob/main/docs)
33-
(please 🙏).
34-
35-
## Support
36-
37-
- 🆘 Join the
38-
[discussion on GitHub](https://github.com/epicweb-dev/epic-stack/discussions)
39-
and the [KCD Community on Discord](https://kcd.im/discord).
40-
- 💡 Create an
41-
[idea discussion](https://github.com/epicweb-dev/epic-stack/discussions/new?category=ideas)
42-
for suggestions.
43-
- 🐛 Open a [GitHub issue](https://github.com/epicweb-dev/epic-stack/issues) to
44-
report a bug.
45-
46-
## Branding
47-
48-
Want to talk about the Epic Stack in a blog post or talk? Great! Here are some
49-
assets you can use in your material:
50-
[EpicWeb.dev/brand](https://epicweb.dev/brand)
51-
52-
## Thanks
53-
54-
You rock 🪨
3+
personal site for lucasb built on top of [The Epic Stack](https://www.epicweb.dev/epic-stack)

app/root.tsx

-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ import { EpicProgress } from '#app/components/progress-bar.tsx'
2323
import SiteFooter from '#app/components/site-footer.js'
2424
import { useToast } from '#app/components/toaster.tsx'
2525
import { Button } from '#app/components/ui/button.tsx'
26-
import { href as iconsHref } from '#app/components/ui/icon.tsx'
2726
import {
2827
SheetTrigger,
2928
SheetClose,
@@ -46,8 +45,6 @@ import tailwindStyleSheetUrl from './styles/tailwind.css?url'
4645

4746
export const links: LinksFunction = () => {
4847
return [
49-
// Preload svg sprite as a resource to avoid render blocking
50-
{ rel: 'preload', href: iconsHref, as: 'image' },
5148
// Preload CSS as a resource to avoid render blocking
5249
{ rel: 'icon', type: 'image/png', href: '/favicons/favicon-32x32.png' },
5350
{

app/routes/_index.tsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ const Home = () => {
6666
<div className="container px-4 md:px-6">
6767
<div className="flex flex-col items-center justify-center space-y-4 text-center">
6868
<div className="space-y-2">
69-
<div className="inline-block rounded-lg bg-gray-50 px-3 py-1 text-sm dark:bg-gray-800">
69+
<div className="inline-block rounded-lg bg-gray-50 px-3 py-1 text-sm dark:bg-gray-900">
7070
Featured Projects
7171
</div>
7272
<h2
@@ -193,7 +193,6 @@ const Home = () => {
193193
rel="noreferrer noopener"
194194
>
195195
<GithubIcon className="h-6 w-6" />
196-
<span>lucasb</span>
197196
</a>
198197
<a
199198
className="flex items-center gap-2"
@@ -202,7 +201,6 @@ const Home = () => {
202201
rel="noreferrer noopener"
203202
>
204203
<LinkedinIcon className="h-6 w-6" />
205-
<span>lucasb</span>
206204
</a>
207205
</div>
208206
</div>

0 commit comments

Comments
 (0)