Skip to content

Commit dd2d725

Browse files
authored
Add Bluesky AuthorCard + Tutorials on Meta Ad Library API and metatargetr (#57)
* Add Bluesky to AuthorCard * small update to bsky * add two tutorials including images
1 parent fa00bd9 commit dd2d725

15 files changed

Lines changed: 1445 additions & 1 deletion

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,7 @@
1818
npm-debug.log*
1919
yarn-debug.log*
2020
yarn-error.log*
21+
22+
# R files
23+
.Rproj.user
24+
.Rproj

docs/docs/03_data-collection/03_00_platform-specific guidelines/03_04_data-collection_meta_ads.mdx

Lines changed: 794 additions & 0 deletions
Large diffs are not rendered by default.

docs/docs/04_data-analysis/04_05_metatargetr.mdx

Lines changed: 645 additions & 0 deletions
Large diffs are not rendered by default.

docs/src/components/AuthorCard.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from "react";
22

3-
const AuthorCard = ({ name, avatar, avatarSrc, position, website, twitter, scholar, mastodon, linkedin }) => (
3+
const AuthorCard = ({ name, avatar, avatarSrc, position, website, twitter, scholar, mastodon, linkedin, bluesky }) => (
44
// make card with author information
55
<div
66
style={{
@@ -50,6 +50,7 @@ const AuthorCard = ({ name, avatar, avatarSrc, position, website, twitter, schol
5050
<a style={{display: mastodon ? 'inline' : 'none', marginLeft: '2px'}} href={mastodon} target="_blank">Mastodon </a>
5151
<a style={{display: scholar ? 'inline' : 'none', marginLeft: '2px'}} href={scholar} target="_blank">Google Scholar </a>
5252
<a style={{display: linkedin ? 'inline' : 'none', marginLeft: '2px'}} href={linkedin} target="_blank">LinkedIn </a>
53+
<a style={{display: bluesky ? 'inline' : 'none', marginLeft:'2px'}} href={bluesky} target="_blank">Bluesky </a>
5354
</div>
5455
</div>
5556
</div>
75.8 KB
Loading
83.2 KB
Loading
47.3 KB
Loading
27.8 KB
Loading
108 KB
Loading
176 KB
Loading

0 commit comments

Comments
 (0)