@@ -109,7 +109,7 @@ import { getFacebookUrl } from "@phntms/react-share";
109
109
const ShareToFacebook = () => (
110
110
< a
111
111
href= {getFacebookUrl ({
112
- url: " https://www.npmjs.com/package/@phntms/react-share " ,
112
+ url: " https://phantom.land/ " ,
113
113
})}
114
114
>
115
115
Share to Facebook
@@ -134,11 +134,7 @@ Basic component example usage:
134
134
import { getLinkedinUrl } from " @phntms/react-share" ;
135
135
136
136
const ShareToLinkedin = () => (
137
- < a
138
- href= {getLinkedinUrl ({
139
- url: " https://www.npmjs.com/package/@phntms/react-share" ,
140
- })}
141
- >
137
+ < a href= {getLinkedinUrl ({ url: " https://phantom.land/" })}>
142
138
Share to Linkedin
143
139
< / a>
144
140
);
@@ -161,13 +157,7 @@ Basic component example usage:
161
157
import { getTwitterUrl } from " @phntms/react-share" ;
162
158
163
159
const ShareToTwitter = () => (
164
- < a
165
- href= {getTwitterUrl ({
166
- url: " https://www.npmjs.com/package/@phntms/react-share" ,
167
- })}
168
- >
169
- Share to Twitter
170
- < / a>
160
+ < a href= {getTwitterUrl ({ url: " https://phantom.land/" })}> Share to Twitter< / a>
171
161
);
172
162
173
163
export default ShareToTwitter ;
@@ -184,23 +174,17 @@ import { getShareUrl, SocialPlatforms } from "@phntms/react-share";
184
174
185
175
const Share = () => (
186
176
< a
187
- href= {getShareUrl (SocialPlatforms .Facebook , {
188
- url: " https://www.npmjs.com/package/@phntms/react-share" ,
189
- })}
177
+ href= {getShareUrl (SocialPlatforms .Facebook , {url: " https://phantom.land/" })}
190
178
>
191
179
Share to Facebook
192
180
< / a>
193
181
< a
194
- href= {getShareUrl (SocialPlatforms .Linkedin , {
195
- url: " https://www.npmjs.com/package/@phntms/react-share" ,
196
- })}
182
+ href= {getShareUrl (SocialPlatforms .Linkedin , { url: " https://phantom.land/" })}
197
183
>
198
184
Share to Linkedin
199
185
< / a>
200
186
< a
201
- href= {getShareUrl (SocialPlatforms .Twitter , {
202
- url: " https://www.npmjs.com/package/@phntms/react-share" ,
203
- })}
187
+ href= {getShareUrl (SocialPlatforms .Twitter , { url: " https://phantom.land/" })}
204
188
>
205
189
Share to Twitter
206
190
< / a>
0 commit comments