diff --git a/apps/web/src/app/globals.css b/apps/web/src/app/globals.css index d309a95..63aa8ff 100644 --- a/apps/web/src/app/globals.css +++ b/apps/web/src/app/globals.css @@ -17,7 +17,7 @@ header { } .icon-button-submit { - @apply icon-button bg-pink-600 transition-all hover:bg-pink-500 disabled:cursor-not-allowed disabled:bg-gray-300 disabled:bg-none; + @apply icon-button bg-fuchsia-600 transition-all hover:bg-fuchsia-500 disabled:cursor-not-allowed disabled:bg-gray-300 disabled:bg-none; } .button { diff --git a/apps/web/src/app/page.tsx b/apps/web/src/app/page.tsx index 1538a34..c78ff51 100644 --- a/apps/web/src/app/page.tsx +++ b/apps/web/src/app/page.tsx @@ -6,17 +6,15 @@ import { UploadContextProvider } from "@/contexts/UploadContext"; import { PageBox } from "@/components/PageBox"; import NavigateButton from "@/components/NavigateButton"; -const gitHubActionCodeSample = `steps: - - uses: actions/checkout@v4 - - uses: zuplo/rmoa-action@v1 +const gitHubActionCodeSample = `- uses: zuplo/rmoa-action@v1 with: filepath: './my-api.json' apikey: \${{ secrets.API_KEY }}`; const HomePage = () => ( -
-

- We rate your OpenAPl +
+

+ We rate your OpenAPI

@@ -24,74 +22,71 @@ const HomePage = () => (
-
- -

Use the CLI

-

- Perfect for developers who prefer working from the command line or - need to integrate quality checks into their development workflow. -

-
-            
-              npx rmoa lint 
-              --filename
-               
-              
-                "api.json"
-              
-               --api-key 
-              
-                "****"
-              
-            
-          
+ +
+ +

Use the CLI

+

+ Perfect for developers who prefer working from the command line or + need to integrate quality checks into their development workflow. +

+
+          
+            npx rmoa lint 
+            --filename
+             
+            
+              "api.json"
+            
+             --api-key 
+            "****"
+          
+        
- -
+ + + + +

Use our GitHub Action

+

+ Seamlessly integrates with your repository to run on Pull Requests and + Pushes to ensure continuous quality monitoring and feedback. +

+
+          {gitHubActionCodeSample}
+        
- -

Use our GitHub Action

-

- Seamlessly integrates with your repository to run on Pull Requests - and Pushes to ensure continuous quality monitoring and feedback. -

-
-            {gitHubActionCodeSample}
-          
+ +
- +

Use our API

+

+ Great option for those developers that want to build their own tools + or their own integration to Rate My OpenAPI. +

+
+ {/* eslint-disable-next-line @next/next/no-img-element */} + Build your tools with the API - +
- -

Use our API

-

- Great option for those developers that want to build their own tools - or their own integration to Rate My OpenAPI. -

-
- {/* eslint-disable-next-line @next/next/no-img-element */} - Build your tools with the API -
+ +
+
- -
-
-
); diff --git a/apps/web/src/components/Header/index.tsx b/apps/web/src/components/Header/index.tsx index 9ead869..e554bdc 100644 --- a/apps/web/src/components/Header/index.tsx +++ b/apps/web/src/components/Header/index.tsx @@ -1,17 +1,17 @@ import LogoIcon from "../LogoIcon"; const Header = () => ( -
-
+
+
diff --git a/apps/web/src/components/NavigateButton/index.tsx b/apps/web/src/components/NavigateButton/index.tsx index c1502d8..54f36a0 100644 --- a/apps/web/src/components/NavigateButton/index.tsx +++ b/apps/web/src/components/NavigateButton/index.tsx @@ -4,7 +4,7 @@ const NavigateButton = ({ label, url }: { label: string; url: string }) => { return (