svelteKitForBeginners/src/routes/home/index.svelte

26 lines
457 B
Svelte
Raw Normal View History

<script lang="ts">
import Tweet from '$root/components/tweet.svelte'
import type { TweetType } from '$root/types'
export let tweets: TweetType[] = []
</script>
<svelte:head>
<title>Home</title>
</svelte:head>
<h1>Feed</h1>
{#each tweets as tweet (tweet.id)}
<Tweet {tweet} />
{/each}
<style>
h1 {
position: sticky;
top: 0;
padding: var(--spacing-8) var(--spacing-24);
font-size: var(--font-24);
backdrop-filter: blur(100px);
}
</style>