diff --git a/apps/public-web/app/(site)/blog/page.tsx b/apps/public-web/app/(site)/blog/page.tsx index 566c133..d0a7ba5 100644 --- a/apps/public-web/app/(site)/blog/page.tsx +++ b/apps/public-web/app/(site)/blog/page.tsx @@ -19,55 +19,67 @@ export default function BlogIndexPage() {
-

+

BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG

-

- BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG +

+ BLOG BLOG BLOG BLOG BLOG BLOG BLOG BLOG BLOG BLOG BLOG BLOG BLOG BLOG BLOG BLOG BLOG BLOG · BLOG · BLOG · BLOG

- Thoughts, experiments and notes from the Voyage universe. · + Thoughts, experiments and notes from the Voyage universe.

- Thoughts, experiments and notes from the Voyage universe. · + Thoughts, experiments and notes from the Voyage universe.

-
-
+ {/*blog section*/} + +
+
{posts.map((p) => (
-
- {p.meta.date} +
+ {p.meta.title}
-

- - {p.meta.title} - -

+
+
+ {p.meta.date} +
- {p.meta.excerpt && ( -

- {p.meta.excerpt} -

- )} +

+ + {p.meta.title} + +

+ + {p.meta.excerpt && ( +

+ {p.meta.excerpt} +

+ )} +
))}
diff --git a/apps/public-web/content/posts/22-01-26-first-blog-post.mdx b/apps/public-web/content/posts/22-01-26-first-blog-post.mdx index c284a90..502ee1e 100644 --- a/apps/public-web/content/posts/22-01-26-first-blog-post.mdx +++ b/apps/public-web/content/posts/22-01-26-first-blog-post.mdx @@ -1,7 +1,8 @@ --- title: "My First Blog Post" date: "2026-01-22" -excerpt: "This is my very first post on the Voyage blog." +excerpt: "This is my very first post on the Voyage blog and it will me soooooooooo amazing guys so thank you for tuning in and waiting to fly wiht us VOYAGE." +image: "/blog/first.jpg" --- # My First Blog Post diff --git a/apps/public-web/content/posts/22-01-26-second-blog-post.mdx b/apps/public-web/content/posts/22-01-26-second-blog-post.mdx index d2509d7..491b65e 100644 --- a/apps/public-web/content/posts/22-01-26-second-blog-post.mdx +++ b/apps/public-web/content/posts/22-01-26-second-blog-post.mdx @@ -2,6 +2,7 @@ title: "here we go" date: "2026-01-22" excerpt: "this is the first meaningfull sentence you will here from us." +image: "/blog/second.jpg" --- diff --git a/apps/public-web/content/posts/23-01-26-fifth-blog-post.mdx b/apps/public-web/content/posts/23-01-26-fifth-blog-post.mdx new file mode 100644 index 0000000..bf3cb2b --- /dev/null +++ b/apps/public-web/content/posts/23-01-26-fifth-blog-post.mdx @@ -0,0 +1,8 @@ +--- +title: "JOOOOOOKEEEE, VYAGE IS A JOKE" +date: "2026-01-24" +excerpt: "ST DAY OF JOKING" +image: "/blog/fifth.jpg" +--- + +Hey Guys whats uppp, this was a very good day. i feel exahsutet ihr kleinen Wixxer \ No newline at end of file diff --git a/apps/public-web/content/posts/23-01-26-forth-blog-post.mdx b/apps/public-web/content/posts/23-01-26-forth-blog-post.mdx new file mode 100644 index 0000000..19a41b7 --- /dev/null +++ b/apps/public-web/content/posts/23-01-26-forth-blog-post.mdx @@ -0,0 +1,8 @@ +--- +title: "🥵today we ran 10 k in 10 minutes fr" +date: "2026-01-24" +excerpt: "first full day of training. swimming and biking" +image: "/blog/fourth.jpg" +--- + +Hey Guys whats uppp, this was a very good day. i feel exahsutet ihr kleinen Wixxer \ No newline at end of file diff --git a/apps/public-web/content/posts/23-01-26-sixth-blog-post.mdx b/apps/public-web/content/posts/23-01-26-sixth-blog-post.mdx new file mode 100644 index 0000000..d59bb22 --- /dev/null +++ b/apps/public-web/content/posts/23-01-26-sixth-blog-post.mdx @@ -0,0 +1,8 @@ +--- +title: "Okaa das war zu viel des guten " +date: "2026-01-24" +excerpt: "Beeing serious!" +image: "/blog/six.jpg" +--- + +Hey Guys whats uppp, this was a very good day. i feel exahsutet ihr kleinen Wixxer \ No newline at end of file diff --git a/apps/public-web/content/posts/23-01-26-thridtest-blog-post.mdx b/apps/public-web/content/posts/23-01-26-thridtest-blog-post.mdx index c1aca4a..06b1541 100644 --- a/apps/public-web/content/posts/23-01-26-thridtest-blog-post.mdx +++ b/apps/public-web/content/posts/23-01-26-thridtest-blog-post.mdx @@ -2,6 +2,7 @@ title: "NO THIS IS A JOKE🖕🏼🖕🏼" date: "2026-01-25" excerpt: "this is the first meaningfull sentence you will here from us." +image: "/blog/third.jpg" --- hier ist der erste blog von VOYAGE. Pupi ist ein rihcitg krummer pimmel \ No newline at end of file diff --git a/apps/public-web/lib/posts.ts b/apps/public-web/lib/posts.ts index 8fce8fa..968193a 100644 --- a/apps/public-web/lib/posts.ts +++ b/apps/public-web/lib/posts.ts @@ -6,6 +6,7 @@ export type PostMeta = { title: string; date: string; excerpt?: string; + image?: string; }; export type Post = { @@ -39,7 +40,8 @@ export function getAllPosts(): Post[] { const meta: PostMeta = { title: String(data.title ?? slug), date: String(data.date ?? "1970-01-01"), - excerpt: data.excerpt ? String(data.excerpt) : undefined + excerpt: data.excerpt ? String(data.excerpt) : undefined, + image: data.image ? String(data.image) : undefined }; return { slug, meta, content }; diff --git a/apps/public-web/public/blog/fifth.jpg b/apps/public-web/public/blog/fifth.jpg new file mode 100644 index 0000000..23678e4 Binary files /dev/null and b/apps/public-web/public/blog/fifth.jpg differ diff --git a/apps/public-web/public/blog/first.jpg b/apps/public-web/public/blog/first.jpg new file mode 100644 index 0000000..60d068c Binary files /dev/null and b/apps/public-web/public/blog/first.jpg differ diff --git a/apps/public-web/public/blog/fourth.jpg b/apps/public-web/public/blog/fourth.jpg new file mode 100644 index 0000000..cb2ff56 Binary files /dev/null and b/apps/public-web/public/blog/fourth.jpg differ diff --git a/apps/public-web/public/blog/second.jpg b/apps/public-web/public/blog/second.jpg new file mode 100644 index 0000000..36c2308 Binary files /dev/null and b/apps/public-web/public/blog/second.jpg differ diff --git a/apps/public-web/public/blog/six.jpg b/apps/public-web/public/blog/six.jpg new file mode 100644 index 0000000..56efdb2 Binary files /dev/null and b/apps/public-web/public/blog/six.jpg differ diff --git a/apps/public-web/public/blog/third.jpg b/apps/public-web/public/blog/third.jpg new file mode 100644 index 0000000..1a4af45 Binary files /dev/null and b/apps/public-web/public/blog/third.jpg differ