react-speakeazii 1.0.6 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,12 +24,23 @@ The `VisitorTracker` component should be placed in your main entry file (e.g., `
|
|
|
24
24
|
|
|
25
25
|
```jsx
|
|
26
26
|
import React from "react";
|
|
27
|
-
import { VisitorTracker } from "react-speakeazii";
|
|
27
|
+
import { VisitorTracker, ContactForm, Blogs, Products, Services, Testimonials, } from "react-speakeazii";
|
|
28
28
|
|
|
29
29
|
function App() {
|
|
30
30
|
return (
|
|
31
31
|
<>
|
|
32
32
|
<VisitorTracker apikey="YOUR_API_KEY" />
|
|
33
|
+
|
|
34
|
+
<Blogs apikey="YOUR_API_KEY" />
|
|
35
|
+
|
|
36
|
+
<Products apikey="YOUR_API_KEY" />
|
|
37
|
+
|
|
38
|
+
<Services apikey="YOUR_API_KEY" />
|
|
39
|
+
|
|
40
|
+
<Testimonials apikey="YOUR_API_KEY" />
|
|
41
|
+
|
|
42
|
+
<ContactForm apikey="YOUR_API_KEY" />
|
|
43
|
+
|
|
33
44
|
{/* Your other app components */}
|
|
34
45
|
</>
|
|
35
46
|
);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-speakeazii",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "Speakeasy is a TypeScript package that provides everything you need for an interactive portfolio. Easily add blogs, reviews, messages, and more directly to your pages. The package offers ready-to-use React components and utility functions for seamless display and management of your content, helping you create a dynamic and engaging portfolio experience.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|