@oaysus/cli 0.1.5 → 0.1.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oaysus/cli",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Oaysus CLI - Professional developer tool for component uploads",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,5 +1,3 @@
1
- import React from 'react';
2
-
3
1
  interface {{COMPONENT_NAME}}Props {
4
2
  heading?: string;
5
3
  subheading?: string;
@@ -14,7 +12,7 @@ export default function {{COMPONENT_NAME}}({
14
12
  buttonLink = '#'
15
13
  }: {{COMPONENT_NAME}}Props) {
16
14
  return (
17
- <div className="bg-gradient-to-r from-blue-600 to-purple-600 text-white py-20 px-4">
15
+ <div className="bg-linear-to-r from-blue-600 to-purple-600 text-white py-20 px-4">
18
16
  <div className="max-w-4xl mx-auto text-center">
19
17
  <h1 className="text-5xl font-bold mb-4">{heading}</h1>
20
18
  <p className="text-xl mb-8">{subheading}</p>
@@ -15,13 +15,13 @@
15
15
  }: Props = $props();
16
16
  </script>
17
17
 
18
- <div class="bg-gradient-to-r from-orange-500 via-pink-500 to-purple-600 text-white py-24 px-4 min-h-[500px] flex items-center justify-center border-8 border-yellow-400 shadow-2xl">
18
+ <div class="bg-linear-to-r from-orange-500 via-pink-500 to-purple-600 text-white py-24 px-4 min-h-[500px] flex items-center justify-center border-8 border-yellow-400 shadow-2xl">
19
19
  <div class="max-w-4xl mx-auto text-center">
20
20
  <h1 class="text-6xl font-black mb-6 text-white drop-shadow-lg">{heading}</h1>
21
21
  <p class="text-2xl mb-10 text-yellow-200 font-semibold">{subheading}</p>
22
22
  <a
23
23
  href={buttonLink}
24
- class="inline-block bg-gradient-to-r from-green-400 to-cyan-500 text-white px-8 py-4 rounded-full text-xl font-bold shadow-xl hover:scale-110 hover:rotate-2 transition-all duration-300 cursor-pointer no-underline"
24
+ class="inline-block bg-linear-to-r from-green-400 to-cyan-500 text-white px-8 py-4 rounded-full text-xl font-bold shadow-xl hover:scale-110 hover:rotate-2 transition-all duration-300 cursor-pointer no-underline"
25
25
  >
26
26
  {buttonText}
27
27
  </a>
@@ -1,11 +1,11 @@
1
1
  <template>
2
- <div class="bg-gradient-to-r from-orange-500 via-pink-500 to-purple-600 text-white py-24 px-4 min-h-[500px] flex items-center justify-center border-8 border-yellow-400 shadow-2xl">
2
+ <div class="bg-linear-to-r from-orange-500 via-pink-500 to-purple-600 text-white py-24 px-4 min-h-[500px] flex items-center justify-center border-8 border-yellow-400 shadow-2xl">
3
3
  <div class="max-w-4xl mx-auto text-center">
4
4
  <h1 class="text-6xl font-black mb-6 text-white drop-shadow-lg">{{ heading }}</h1>
5
5
  <p class="text-2xl mb-10 text-yellow-200 font-semibold">{{ subheading }}</p>
6
6
  <a
7
7
  :href="buttonLink"
8
- class="inline-block bg-gradient-to-r from-green-400 to-cyan-500 text-white px-8 py-4 rounded-full text-xl font-bold shadow-xl hover:scale-110 hover:rotate-2 transition-all duration-300 cursor-pointer no-underline"
8
+ class="inline-block bg-linear-to-r from-green-400 to-cyan-500 text-white px-8 py-4 rounded-full text-xl font-bold shadow-xl hover:scale-110 hover:rotate-2 transition-all duration-300 cursor-pointer no-underline"
9
9
  >
10
10
  {{ buttonText }}
11
11
  </a>