Skip to content

Commit 913847b

Browse files
authored
Merge branch 'main' into fix/server-timing-typo
2 parents c9e586d + f1faeef commit 913847b

File tree

148 files changed

+7443
-4851
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

148 files changed

+7443
-4851
lines changed

bun.lockb

21.9 KB
Binary file not shown.

components/blog/Landing.vue

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<template>
2-
<header
3-
class="flex flex-col justify-center items-center max-w-3xl gap-3 w-full mx-auto pt-20 pb-4"
4-
>
2+
<Ray class="h-[40vh] -top-20 left-0 z-[100] opacity-30 dark:opacity-[.55] pointer-events-none" static />
3+
<header class="flex flex-col justify-center items-center max-w-3xl gap-3 w-full mx-auto pt-20 pb-4">
54
<h1 class="text-2xl md:text-3xl text-gray-700 dark:text-gray-100 font-semibold">
65
Latest Updates
76
</h1>
@@ -10,11 +9,9 @@
109
</p>
1110
</header>
1211
<main class="flex flex-col max-w-xl gap-4 w-full mx-auto my-8">
13-
<a
14-
v-for="blog in props.blogs"
12+
<a v-for="blog in props.blogs"
1513
class="px-4 py-2 rounded-lg hover:bg-gray-50 focus:bg-gray-50 dark:hover:bg-gray-700 dark:focus:bg-gray-700 transition-colors cursor-pointer"
16-
:href="blog.href"
17-
>
14+
:href="blog.href">
1815
<article class="flex flex-col gap-2">
1916
<h2 class="text-xl font-semibold text-gray-700 dark:text-gray-100">
2017
{{ blog.title }}
@@ -28,6 +25,8 @@
2825
<script lang="ts" setup>
2926
import { defineProps } from 'vue'
3027
28+
import Ray from '../../components/midori/ray.vue'
29+
3130
import '../tailwind.css'
3231
3332
const props = defineProps<{

components/blog/Layout.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<h1 class="!text-3xl !md:text-4xl font-medium">
44
{{ props.title }}
55
</h1>
6-
<aside class="flex gap-3 items-center mt-4">
6+
<!-- <aside class="flex gap-3 items-center mt-4">
77
<img
88
class="w-9 h-9 rounded-full"
99
:src="profile"
@@ -19,11 +19,11 @@
1919
<a :href="twitter" target="_blank">@{{ author.twitter }}</a>
2020
</p>
2121
</div>
22-
</aside>
22+
</aside> -->
2323
<img
2424
:src="props.src"
2525
:alt="props.alt"
26-
class="w-full my-4 shadow-2xl my-6"
26+
class="w-full shadow-2xl my-6"
2727
/>
2828
<main id="blog-content">
2929
<slot />
@@ -92,7 +92,7 @@ onUnmounted(() => {
9292
}
9393
9494
#blog {
95-
@apply text-lg;
95+
@apply text-lg mt-0;
9696
}
9797
9898
#blog > img {

components/landing/benchmark.vue

Lines changed: 0 additions & 60 deletions
This file was deleted.

components/landing/built-with-love.vue

Lines changed: 0 additions & 40 deletions
This file was deleted.

components/landing/components/plugins.vue

Lines changed: 0 additions & 22 deletions
This file was deleted.

components/landing/components/progress.vue

Lines changed: 0 additions & 61 deletions
This file was deleted.

components/landing/components/simple.vue

Lines changed: 0 additions & 36 deletions
This file was deleted.

components/landing/ecosystem.vue

Lines changed: 0 additions & 42 deletions
This file was deleted.

0 commit comments

Comments
 (0)