From d4069a37e7472de18c9c29c947cc0521bd9c4a0e Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Sat, 10 Feb 2024 19:15:11 +0100 Subject: [PATCH] features page is done --- .../src/assets/integration-icons/apache.tsx | 97 +++++++++++++++++++ .../src/assets/integration-icons/index.ts | 59 +---------- .../src/assets/integration-icons/nginx.tsx | 8 ++ documentation/src/assets/integrations.ts | 38 +------- 4 files changed, 111 insertions(+), 91 deletions(-) create mode 100644 documentation/src/assets/integration-icons/apache.tsx create mode 100644 documentation/src/assets/integration-icons/nginx.tsx diff --git a/documentation/src/assets/integration-icons/apache.tsx b/documentation/src/assets/integration-icons/apache.tsx new file mode 100644 index 00000000..deff4087 --- /dev/null +++ b/documentation/src/assets/integration-icons/apache.tsx @@ -0,0 +1,97 @@ +import * as React from "react"; +import { SVGProps } from "react"; + +const SvgApache = (props: SVGProps) => ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +); + +export default SvgApache; \ No newline at end of file diff --git a/documentation/src/assets/integration-icons/index.ts b/documentation/src/assets/integration-icons/index.ts index 3bd33827..6308dfb7 100644 --- a/documentation/src/assets/integration-icons/index.ts +++ b/documentation/src/assets/integration-icons/index.ts @@ -42,60 +42,5 @@ export { default as Visitors } from "./visitors"; export { default as Activity } from "./activity"; export { default as AccountCog } from "./accountcog"; export { default as Cache } from "./cache"; - - -export { default as Ably } from "./ably"; -export { default as Airtable } from "./airtable"; -export { default as Antd } from "./antd"; -export { default as Appwrite } from "./appwrite"; -export { default as Chakra } from "./chakra"; -export { default as Directus } from "./directus"; -export { default as Dp } from "./dp"; -export { default as Elide } from "./elide"; -export { default as ElideGraphql } from "./elide-graphql"; -export { default as EntRefine } from "./entrefine"; -export { default as Firebase } from "./firebase"; -export { default as Graphql } from "./graphql"; -export { default as Hasura } from "./hasura"; -export { default as Headless } from "./headless"; -export { default as HookForm } from "./hook-form"; -export { default as Hygraph } from "./hygraph"; -export { default as JSONApi } from "./json-api"; -export { default as Kbar } from "./kbar"; -export { default as Kinde } from "./kinde"; -export { default as Mantine } from "./mantine"; -export { default as Medusa } from "./medusa"; -export { default as Mui } from "./mui"; -export { default as Nest } from "./nest"; -export { default as NestQuery } from "./nest-query"; -export { default as Nextjs } from "./nextjs"; -export { default as React } from "./react"; -export { default as Remix } from "./remix"; -export { default as Rest } from "./rest"; -export { default as Sanity } from "./sanity"; -export { default as ShadCnUI } from "./shadcn-ui"; -export { default as SQLite } from "./sqlite"; -export { default as Strapi } from "./strapi"; -export { default as StrapiWithText } from "./strapi-with-text"; -export { default as Supabase } from "./supabase"; -export { default as SupabaseWithText } from "./supabase-with-text"; -export { default as TailwindCss } from "./tailwindcss"; -export { default as UseGenerated } from "./usegenerated"; -export { default as SlackIcon } from "./slack"; -export { default as Atlassian } from "./atlassian"; -export { default as AuthJs } from "./auth-js"; -export { default as Auth0 } from "./auth0"; -export { default as AwsCognito } from "./aws-cognito"; -export { default as AzureActiveDirectory } from "./azure-active-directory"; -export { default as Clerk } from "./clerk"; -export { default as Expo } from "./expo"; -export { default as Google } from "./google"; -export { default as Okta } from "./okta"; -export { default as MongoDB } from "./mongodb"; -export { default as MsSqlServer } from "./ms-sql-server"; -export { default as MySql } from "./mysql"; -export { default as PostgreSql } from "./postgresql"; -export { default as Oracle } from "./oracle"; -export { default as RestWithoutText } from "./rest-without-text"; -export { default as CustomAuth } from "./custom-auth"; -export { default as Vite } from "./vite"; +export { default as Nginx } from "./nginx"; +export { default as Apache } from "./apache"; diff --git a/documentation/src/assets/integration-icons/nginx.tsx b/documentation/src/assets/integration-icons/nginx.tsx new file mode 100644 index 00000000..6cc1abad --- /dev/null +++ b/documentation/src/assets/integration-icons/nginx.tsx @@ -0,0 +1,8 @@ +import * as React from "react"; +import { SVGProps } from "react"; + +const SvgNginx = (props: SVGProps) => ( +file_type_nginx +); + +export default SvgNginx; \ No newline at end of file diff --git a/documentation/src/assets/integrations.ts b/documentation/src/assets/integrations.ts index dc3888c3..7f41bcf7 100644 --- a/documentation/src/assets/integrations.ts +++ b/documentation/src/assets/integrations.ts @@ -45,45 +45,15 @@ import { Visitors, Activity, AccountCog, - Airtable, - Antd, - Ably, - Appwrite, - Chakra, - Directus, - Dp, - Elide, - ElideGraphql, - EntRefine, - Firebase, - Graphql, - Hasura, - HookForm, - Hygraph, - JSONApi, - Kbar, - Mantine, - Medusa, - Mui, - Nest, - NestQuery, - Nextjs, - React, - Remix, - Rest, - Sanity, - SQLite, - Strapi, - Supabase, - UseGenerated, - Kinde, + Apache, + Nginx, } from "./integration-icons"; export const integrations: IntegrationsType = { "ui-framework-packages": [ { name: "Nginx", - icon: Mui, + icon: Nginx, description: "Run Nginx web server is a lightweight, open-source solution. The OpenPanel version of the Nginx web server enables configuration of cache exclusion, cache purging, URL rewriting, and FastCGI cache on a per-domain basis.", url: "/docs/admin/", @@ -91,7 +61,7 @@ export const integrations: IntegrationsType = { }, { name: "Apache", - icon: Antd, + icon: Apache, description: "Run Apache web server per user. Apache's support for .htaccess files enables users to customize and override global configuration settings on a per-directory basis.", url: "/docs/admin/",