@nextworks/blocks-templates 0.1.0-alpha.0 → 0.1.0-alpha.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.
@@ -1 +1 @@
1
- {"version":3,"file":"Contact.d.ts","sourceRoot":"","sources":["../../../../src/templates/digitalagency/components/Contact.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,OAAO,CAAC;AA2D1B,wBAAgB,OAAO,sBA6DtB"}
1
+ {"version":3,"file":"Contact.d.ts","sourceRoot":"","sources":["../../../../src/templates/digitalagency/components/Contact.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,OAAO,CAAC;AA2D1B,wBAAgB,OAAO,sBA4DtB"}
@@ -57,7 +57,6 @@ export function Contact() {
57
57
  const handleFormSubmit = (e) => {
58
58
  e.preventDefault();
59
59
  const data = Object.fromEntries(new FormData(e.currentTarget).entries());
60
- console.log("Contact form submitted:", data);
61
60
  };
62
61
  return (<SharedContact id="contact" fields={agencyContactFormData} contactHeaderText="Let’s Talk Strategy" contactSubHeaderText="We’re here to help you grow — tell us how!"
63
62
  // Root and layout
@@ -1 +1 @@
1
- {"version":3,"file":"Portfolio.d.ts","sourceRoot":"","sources":["../../../../src/templates/digitalagency/components/Portfolio.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAyF1B,wBAAgB,SAAS,sBA8DxB"}
1
+ {"version":3,"file":"Portfolio.d.ts","sourceRoot":"","sources":["../../../../src/templates/digitalagency/components/Portfolio.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAyF1B,wBAAgB,SAAS,sBAqDxB"}
@@ -99,12 +99,6 @@ export function Portfolio() {
99
99
  className: "h-10 px-6 flex items-center justify-center font-medium shadow-md hover:shadow-lg transition-all duration-200 hover:-translate-y-0.5 [--btn-bg:theme(colors.fuchsia.600)] hover:[--btn-hover-bg:theme(colors.fuchsia.700)] [--btn-fg:theme(colors.white)] hover:[--btn-hover-fg:theme(colors.white)]",
100
100
  }} cta2Button={{
101
101
  className: "h-10 px-6 flex items-center justify-center font-medium shadow-md hover:shadow-lg transition-all duration-200 hover:-translate-y-0.5 border-2 [--btn-bg:transparent] [--btn-fg:theme(colors.fuchsia.700)] [--btn-border:theme(colors.fuchsia.600)] hover:[--btn-hover-bg:theme(colors.fuchsia.600)] hover:[--btn-hover-fg:theme(colors.white)] dark:[--btn-fg:theme(colors.fuchsia.400)] dark:[--btn-border:theme(colors.fuchsia.500)] dark:hover:[--btn-hover-bg:theme(colors.fuchsia.500)] dark:hover:[--btn-hover-fg:theme(colors.white)]",
102
- }} onProjectClick={(project) => {
103
- console.log("Project clicked:", project);
104
- }} onPrimaryCtaClick={() => {
105
- console.log("CTA 1 clicked:");
106
- }} onSecondaryCtaClick={() => {
107
- console.log("CTA 2 clicked:");
108
102
  }} ariaLabel="Portfolio showcase section"/>
109
103
  </section>);
110
104
  }
@@ -1 +1 @@
1
- {"version":3,"file":"Contact.d.ts","sourceRoot":"","sources":["../../../../src/templates/productlaunch/components/Contact.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,OAAO,CAAC;AAwD1B,wBAAgB,OAAO,sBAkEtB"}
1
+ {"version":3,"file":"Contact.d.ts","sourceRoot":"","sources":["../../../../src/templates/productlaunch/components/Contact.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,OAAO,CAAC;AAwD1B,wBAAgB,OAAO,sBAiEtB"}
@@ -55,7 +55,6 @@ export function Contact() {
55
55
  const handleFormSubmit = (e) => {
56
56
  e.preventDefault();
57
57
  const data = Object.fromEntries(new FormData(e.currentTarget).entries());
58
- console.log("Contact form submitted:", data);
59
58
  };
60
59
  return (<SharedContact id="contact" fields={productLaunchContactFormData} contactHeaderText="Get Started with IntelliOpAI" contactSubHeaderText="Ready to revolutionize your workflow? Get in touch with our team to learn how our AI solutions can transform your business operations and drive growth."
61
60
  // Root and layout
@@ -1 +1 @@
1
- {"version":3,"file":"Contact.d.ts","sourceRoot":"","sources":["../../../../src/templates/saasdashboard/components/Contact.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAmD1B,wBAAgB,OAAO,sBA2EtB"}
1
+ {"version":3,"file":"Contact.d.ts","sourceRoot":"","sources":["../../../../src/templates/saasdashboard/components/Contact.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAmD1B,wBAAgB,OAAO,sBA0EtB"}
@@ -49,7 +49,6 @@ export function Contact() {
49
49
  const handleFormSubmit = (e) => {
50
50
  e.preventDefault();
51
51
  const data = Object.fromEntries(new FormData(e.currentTarget).entries());
52
- console.log("Contact form submitted:", data);
53
52
  };
54
53
  return (<div className="relative">
55
54
  {/* Gradient mesh overlay */}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextworks/blocks-templates",
3
- "version": "0.1.0-alpha.0",
3
+ "version": "0.1.0-alpha.8",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -9,15 +9,22 @@
9
9
  "package.json",
10
10
  "README.md"
11
11
  ],
12
- "publishConfig": {
13
- "access": "public"
14
- },
12
+ "repository": "github:jblh/nextworks-cli",
13
+ "bugs": "https://github.com/jblh/nextworks-cli/issues",
14
+ "homepage": "https://github.com/jblh/nextworks-cli#readme",
15
15
  "scripts": {
16
- "build": "tsc -p tsconfig.json"
16
+ "build": "npx tsc -p tsconfig.json"
17
17
  },
18
18
  "dependencies": {
19
- "@nextworks/blocks-core": "0.1.0-alpha.0",
20
- "@nextworks/blocks-sections": "0.1.0-alpha.0"
19
+ "@nextworks/blocks-core": "0.1.0-alpha.8",
20
+ "@nextworks/blocks-sections": "0.1.0-alpha.8",
21
+ "lucide-react": "^0.542.0"
22
+ },
23
+ "devDependencies": {
24
+ "typescript": "^5.9.3",
25
+ "@types/node": "^20",
26
+ "@types/react": "^19",
27
+ "@types/react-dom": "^19"
21
28
  },
22
29
  "peerDependencies": {
23
30
  "react": "^19.0.0",