Skip to content

Commit 19e1c18

Browse files
committed
Remove intercom
1 parent 36a6874 commit 19e1c18

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

src/layouts/BlogPost.astro

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ const ogImage = await getImage({ src: heroImage, format: "jpg", height: 200 });
1717
description={description}
1818
current="/blog"
1919
ogImage={ogImage}
20-
withIntercom
2120
>
2221
<main>
2322
<div class="row">

src/pages/blog/index.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ import { Image } from "astro:assets";
55
import BaseLayout from "../../layouts/BaseLayout.astro";
66
77
const posts = (await getCollection("blog")).sort(
8-
(a, b) => b.data.pubDate.valueOf() - a.data.pubDate.valueOf()
8+
(a, b) => b.data.pubDate.valueOf() - a.data.pubDate.valueOf(),
99
);
1010
---
1111

12-
<BaseLayout current="/blog" title="Blog index - Jesus Cano" withIntercom>
12+
<BaseLayout current="/blog" title="Blog index - Jesus Cano">
1313
<main>
1414
<div class="row">
1515
<ul>

src/pages/index.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import Portfolio from "../components/Portfolio.astro";
88
import Testimonials from "../components/Testimonials.astro";
99
---
1010

11-
<BaseLayout current="/#hero" animateHeader withBorder withIntercom>
11+
<BaseLayout current="/#hero" animateHeader withBorder>
1212
<Hero />
1313
<About />
1414
<Portfolio />

0 commit comments

Comments
 (0)