diff --git a/apps/docs/components/footer.tsx b/apps/docs/components/footer.tsx
index b19a959eb2..bf4ee63d7a 100644
--- a/apps/docs/components/footer.tsx
+++ b/apps/docs/components/footer.tsx
@@ -1,12 +1,9 @@
"use client";
-import dynamic from "next/dynamic";
import {usePathname} from "next/navigation";
import {getCurrentYear} from "@/utils/time";
-const VercelCallout = dynamic(() => import("./vercel-callout").then((mod) => mod.VercelCallout));
-
export const Footer = () => {
const pathname = usePathname();
@@ -18,7 +15,6 @@ export const Footer = () => {
);
diff --git a/apps/docs/components/icons/social.tsx b/apps/docs/components/icons/social.tsx
index 160e9ab8a9..eaad88f6d8 100644
--- a/apps/docs/components/icons/social.tsx
+++ b/apps/docs/components/icons/social.tsx
@@ -98,23 +98,6 @@ const NextJsIcon: React.FC = ({size = 24, width, height, ...props}
);
};
-const VercelIcon: React.FC = ({width, height = 44, ...props}) => {
- return (
-
-
-
- );
-};
const NpmIcon: React.FC = ({width = "1em", height = "1em", ...props}) => {
return (
@@ -477,7 +460,6 @@ export {
OpenCollectiveIcon,
PatreonIcon,
NextJsIcon,
- VercelIcon,
NpmIcon,
NpmSmallIcon,
PnpmIcon,
diff --git a/apps/docs/components/index.ts b/apps/docs/components/index.ts
index ec88cfbdaa..7a6e106fd5 100644
--- a/apps/docs/components/index.ts
+++ b/apps/docs/components/index.ts
@@ -3,7 +3,6 @@ export * from "./theme-switch";
export * from "./looper-bg";
export * from "./code-window";
export * from "./gradient-box";
-export * from "./vercel-callout";
export * from "./copy-button";
export * from "./demo-code-modal";
export * from "./mdx-components";
diff --git a/apps/docs/components/marketing/sponsors.tsx b/apps/docs/components/marketing/sponsors.tsx
index bf3ee6a139..49c1657d56 100644
--- a/apps/docs/components/marketing/sponsors.tsx
+++ b/apps/docs/components/marketing/sponsors.tsx
@@ -3,16 +3,10 @@ import {Button, Link} from "@nextui-org/react";
import {sectionWrapper} from "@/components/primitives";
import {Story2DesignLogo, ReplexicaLogo, CodeRabbitLogo} from "@/components/icons/sponsors";
import {HeartFilledIcon} from "@/components/icons";
-import {VercelIcon} from "@/components/icons/social";
import {siteConfig} from "@/config/site";
import {Sponsor, SponsorItem} from "@/components/marketing/sponsor-item";
const sponsors: Sponsor[] = [
- {
- name: "Vercel",
- href: "https://www.vercel.com?utm_source=nextui&utm_marketing=oss",
- logo: ,
- },
{
name: "story.to.design",
href: "https://story.to.design?utm_source=nextui&utm_marketing=partnership",
diff --git a/apps/docs/components/vercel-callout.tsx b/apps/docs/components/vercel-callout.tsx
deleted file mode 100644
index 0c8afbc8af..0000000000
--- a/apps/docs/components/vercel-callout.tsx
+++ /dev/null
@@ -1,27 +0,0 @@
-"use client";
-
-import React from "react";
-import {Link} from "@nextui-org/react";
-
-import {VercelIcon} from "@/components/icons";
-import {trackEvent} from "@/utils/va";
-
-export const VercelCallout: React.FC = () => {
- return (
- {
- trackEvent("VercelCallout", {
- name: "vercel callout",
- action: "click",
- category: "footer",
- });
- }}
- >
- Deployed on
-
-
- );
-};
diff --git a/packages/core/react/README.md b/packages/core/react/README.md
index 0d4a2bb4e3..841fb0f84d 100644
--- a/packages/core/react/README.md
+++ b/packages/core/react/README.md
@@ -20,13 +20,7 @@
-
-
-
-
-
-
-> **NOTE:** This is a community project, not associated with [Vercel](https://vercel.com), but does get some inspiration from there.
+> **NOTE:** This is a community project, not associated with [Vercel](https://vercel.com).
## Getting Started