Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
markmals committed Apr 2, 2024
0 parents commit 8c3a63d
Show file tree
Hide file tree
Showing 44 changed files with 10,516 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitignore
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
19 changes: 19 additions & 0 deletions README.md
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
46 changes: 46 additions & 0 deletions components/Holotype.vue
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>
Loading

0 comments on commit 8c3a63d

Please sign in to comment.