-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 8c3a63d
Showing
44 changed files
with
10,516 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
node_modules | ||
.DS_Store | ||
dist | ||
*.local | ||
index.html | ||
.remote-assets | ||
components.d.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Performant Websites with Remix | ||
|
||
> Techniques to make your Remix website or web app load and run faster | ||
The slides for my talk from the [Austin Remix Meetup on March 6th, 2024](https://youtu.be/FoSFjRD5AKU). | ||
|
||
Start the presentation locally: | ||
|
||
```sh | ||
npm run dev | ||
``` | ||
|
||
You can view an online version of the presentation at: | ||
|
||
https://markmals.github.io/remix-meetup-2024-03 | ||
|
||
And the version with the presenter's notes here: | ||
|
||
https://markmals.github.io/remix-meetup-2024-03/presenter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<script setup lang="ts"> | ||
interface Props { | ||
emojiIcon: string | ||
title: string | ||
holotype: string | ||
examples: string | ||
characteristics: string | ||
constraints: string | ||
idealImplementation: string | ||
idealDelivery: string | ||
} | ||
const { | ||
emojiIcon, | ||
title, | ||
holotype, | ||
examples, | ||
characteristics, | ||
constraints, | ||
idealImplementation, | ||
idealDelivery | ||
} = defineProps<Props>() | ||
</script> | ||
|
||
<template> | ||
<div class="grid grid-cols-1 gap-4 w-full"> | ||
<div | ||
class="relative flex items-start space-x-3 rounded-lg border border-gray-300 dark:border-[rgba(110,231,183,0.3)] dark:border bg-white dark:bg-[rgb(18,18,18)] px-4 py-3 shadow-sm" | ||
> | ||
<div class="flex-shrink-0">{{ emojiIcon }}</div> | ||
<div class="min-w-0 flex-1 flex flex-col"> | ||
<span class="font-bold text-gray-900 dark:text-gray-100"> | ||
{{ title }} | ||
</span> | ||
<span class="text-sm text-gray-500 dark:text-gray-400"> | ||
<strong>Holotype:</strong> {{ holotype }}<br /> | ||
<strong>Examples:</strong> {{ examples }}<br /> | ||
<strong>Characteristics:</strong> {{ characteristics }}<br /> | ||
<strong>Constraints:</strong> {{ constraints }}<br /> | ||
<strong>Ideal Implementation:</strong> {{ idealImplementation }}<br /> | ||
<strong>Ideal Delivery:</strong> {{ idealDelivery }} | ||
</span> | ||
</div> | ||
</div> | ||
</div> | ||
</template> |
Oops, something went wrong.