File size: 1,742 Bytes
1b44660
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<script setup lang="ts">
import SubscriptionForm from '../components/SubscriptionForm.vue';

const { $md } = useNuxtApp();
const config = useRuntimeConfig();

const text = ref(
  `
## what is this?

my personal intelligence agency. i built a daily brief of everything important happening that i care about, with *actual analysis* beyond headlines.

gives me the "what", "why", and "so what" behind global events in 15min.

### how it works
- scrapes hundreds of news sources
- clusters related articles
- separates facts from disputed claims
- spots bias patterns
- runs targeted web searches to find context and fill knowledge gaps
- identifies what actually matters
- delivers one clean & engaging brief

### why i built this

always thought it was cool how presidents get those daily briefings - everything they need to know, perfectly prepared by a team of analysts. figured *why can't i have that too*?

now with ai, i can. what would've required an *entire* intelligence agency now costs about *a dollar a day* in compute.

this brief is tuned to what i care about (geopolitics, french news, tech, actual good news).

just what's happening and why it matters. no middleman deciding what reaches me.
`.trim()
);

useSEO({
  title: 'home | meridian',
  description:
    'a daily brief of everything important happening that i care about, with actual analysis beyond headlines',
  ogImage: `${config.public.WORKER_API}/openGraph/default`,
  ogUrl: `https://news.iliane.xyz/`,
});
</script>

<template>
  <div class="flex flex-col gap-6">
    <div class="prose" v-html="$md.render(text)" />

    <!-- Subscription area -->
    <div class="mt-4 pt-8 pb-6 border-t border-gray-300">
      <SubscriptionForm />
    </div>
  </div>
</template>