Skip to content

Commit 3d4e954

Browse files
committed
+
1 parent 36ea1eb commit 3d4e954

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed
4.05 KB
Loading

src/data/tweets.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import silvenon from "@/assets/images/tweets/silvenon.jpg";
2424
import silvenonTweet from "@/assets/images/tweets/silvenonTweet.webp";
2525
import spacesexdragon from "@/assets/images/tweets/spacesexdragon.jpg";
2626
import spacesexdragonTweet from "@/assets/images/tweets/spacesexdragonTweet.jpg";
27+
import brodaNoel from "@/assets/images/tweets/brodaNoel.jpg";
2728

2829
// Tweet images
2930

@@ -175,4 +176,11 @@ export const tweets: ITweet[] = [
175176
href: "https://x.com/spacesexdragon/status/1843381135134675236",
176177
tweetImage: spacesexdragonTweet,
177178
},
179+
{
180+
avatar: brodaNoel,
181+
name: "Broda Noel",
182+
login: "BrodaNoel",
183+
text: "Is this a joke? Because if this is a joke, it's really really really bad joke, because now I'm fucking hating @DrizzleORM without even knowing who they are.\nI mean, this is not a good marketing strategy if this was a marketing-joke.\nAnd if it's actually true, I'll hate them more.",
184+
href: "https://x.com/BrodaNoel/status/1913248949252616287",
185+
},
178186
];

src/ui/components/landing/Tweets.astro

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,7 @@ const formattedText = (text?: string) => {
3333
</div>
3434
<div class="tweet-content">
3535
{formattedText(t.text) && (
36-
<div class="tweet-content_text">
37-
<Fragment set:html={formattedText(t.text)} />
38-
</div>
36+
<div class="tweet-content_text"><Fragment set:html={formattedText(t.text)} /></div>
3937
)}
4038
{t.tweetImage && (
4139
<Image
@@ -65,9 +63,7 @@ const formattedText = (text?: string) => {
6563
</div>
6664
<div class="tweet-content">
6765
{formattedText(t.text) && (
68-
<div class="tweet-content_text">
69-
<Fragment set:html={formattedText(t.text)} />
70-
</div>
66+
<div class="tweet-content_text"><Fragment set:html={formattedText(t.text)} /></div>
7167
)}
7268
{t.tweetImage && (
7369
<Image

0 commit comments

Comments
 (0)